我正在尝试使用 Facebook API 访问公共 Facebook 页面的帖子,但即使使用所有正确的凭据,我似乎也无法进行身份验证。FB.api 返回:
{"error":{"type":"http","message":"unknown error"}}
并且在“访问令牌 1:第 1 行”中记录了一个错误
Uncaught ReferenceError: TRJg376YTvXfk6sMur4Mggh5YnU is not defined access_token:1
(匿名函数)
这是我正在使用的代码:
<script src="http://connect.facebook.net/en_US/all.js"></script>
<div id="fb-root"></div>
<button name="my_full_name" onclick="connectToFacebook()" value="My Name" />
<script>
function connectToFacebook() {
FB.api('https://graph.facebook.com/oauth/access_token',
'get',
{client_id:'xxxxxxxxxx', client_secret:'xxxxxxxxxx',grant_type:'client_credentials'}, //client_credentials
function(response) {
alert(JSON.stringify(response));
});
FB.api("/publicpage/feed",
function (response) {
console.log(response);
});
}
</script>
他们的网站上没有很好的记录!有任何想法吗?