我尝试使用以下代码为我的 facebook 应用程序获取应用程序访问令牌:
APP_ACCESS_TOKEN = FB.api(
"oauth/access_token",
{client_id: APP_ID, client_secret: APP_SECRET_CODE, redirect_uri: uri},
function(response){
console.log(response);
});
应该是这样的:
GET https://graph.facebook.com/oauth/access_token?
client_id=YOUR_APP_ID
&client_secret=YOUR_APP_SECRET
&redirect_uri=uri
但我得到一个错误:
code: 1
message: "Missing authorization code"
type: "OAuthException"
什么是授权码,我怎样才能得到它?