我正在尝试通过facebook API instructions之后的Facebook API Graph Exlorer请求我的应用程序的authtoken。当我使用以下格式的URL进行get get:
https://graph.facebook.com/oauth/access_token?client_id=YOUR_APP_ID&client_secret=YOUR_APP_SECRET&grant_type=client_credentials
我收到以下错误:
{
"error": {
"message": "Invalid callback",
"type": "OAuthException",
"code": 1
}
}
关于如何获取我的应用程序的访问令牌的建议将不胜感激!
如果我尝试以编程方式运行以下代码来获取访问代码:
FB.api('/oauth/access_token?client_id={APP_ID}&client_secret={APP_SECRET}&grant_type=client_credentials', function(response) {
alert(JSON.stringify(response));
});
我收到以下错误:
{"error":"load-error: unknown"}
答案 0 :(得分:6)
您无法使用Facebook Graph API资源管理器执行此命令。 直接在浏览器中输入会根据需要返回访问令牌。