fixed example07

このコミットが含まれているのは:
tastytea 2018-04-01 03:37:01 +02:00
コミット 364ac268fd
署名者: tastytea
GPGキーID: 59346E0EA35C67E5
1個のファイルの変更2行の追加4行の削除

ファイルの表示

@ -30,8 +30,7 @@ int main(int argc, char *argv[])
std::uint16_t ret;
std::string client_id, client_secret, url;
ret = masto.register_app1(argv[1],
"test123",
ret = masto.register_app1("test123",
"urn:ietf:wg:oauth:2.0:oob",
"read follow",
"",
@ -47,8 +46,7 @@ int main(int argc, char *argv[])
std::cin >> code;
std::string access_token;
ret = masto.register_app2(argv[1],
client_id,
ret = masto.register_app2(client_id,
client_secret,
"urn:ietf:wg:oauth:2.0:oob",
code,