我正在尝试获取通用的facebook访问令牌。我读过的所有教程都建议使用下面的调用。
https://graph.facebook.com/oauth/access_token?
client_id=YOUR_APP_ID&
client_secret=YOUR_APP_SECRET&
grant_type=client_credentials
这会生成一个访问令牌,我将其粘贴到浏览器中。但是当我使用下面的代码和javascript SDK尝试使用我的App Id和App Secret时。
FB.api('/oauth/access_token?
client_id=MY_APP_ID&client_secret=MY_APP_SECRET&grant_type=client_credentials',
$.proxy( function(response) {
},this));
我收到以下回复。
{"error":{"type":"http","message":"unknown error"}}
关于出了什么问题的任何想法?