2013-10-24 213 views

回答

1

对于应用程序的访问令牌,您将需要应用程序的ID秘密问题。用户访问令牌不是必需的(也没有帮助)。

基本上你可以只发送到以下端点的请求(如described in the docs),替代正确的地方APP-ID和应用秘密:

 
GET /oauth/access_token? 
    client_id={app-id} 
    &client_secret={app-secret} 
    &grant_type=client_credentials 
相关问题