2013-10-24 211 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 
相關問題