1

我正在尝试获取通用的 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"}}

关于出了什么问题的任何想法?

4

0 回答 0