fixed example07

This commit is contained in:
tastytea 2018-04-01 03:37:01 +02:00
父節點 445567744d
當前提交 364ac268fd
簽署人: tastytea
GPG Key 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,