我正在使用javascript sdk而我正在尝试从Facebook帐户获取公开信息。 这是我用来设置ajax和获取访问令牌的代码(我在请求中使用我的app secret,因为程序只在我的计算机上运行,并且没有客户端暴露给它)。
<head>
<title>Hopfully Facebook</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js">//connect to ajax</script>
</head>
<body>
<script>
var token;
$.ajax({url: "https://graph.facebook.com/oauth/access_token?\client_id=APPID&client_secret=APPSECRET&grant_type=client_credentials",
success: function(result){
token = result.access_token; //in this var the access_token is stored
}); // end of the access_token request
</script>
这是javascript sdk的设置和第一篇帖子的mesasge的请求。
<script>
window.fbAsyncInit = function() {
FB.init({
appId : 'APPID',
xfbml : true,
version : 'v2.9'
}); //setting up the javascript sdk
var firstPostId;
FB.api(
('/AviBitterOfficial/posts?access_token='+token),
'GET',
{ "limit" : "1"},
function(response) {
console.log(response);
firstPostId = JSON.stringify(response.data[0].id);
firstPostId = firstPostId.substring(1, firstPostId.length -1);
FB.api( // the second call is in the first call's call back in order to bypass the async problem
('/'+ firstPostId+'?access_token='+token), // that the second call has initialized before the first call back
'GET',
{"fields":"message"},
function(response) {
alert(response.message);
}
);
}
);
};
(function(d, s, id){
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) {return;}
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/en_US/sdk.js";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));
</script>
每次运行程序时,它都会生成相同的密钥,但是它的问题有点奇怪。当我使用令牌进行api调用来获取帖子的文本时,它有时会拨打电话并给我文本,但有时它会给我这个错误“无效的OAuth访问令牌”。代码109。 这很奇怪,因为无论是在api调用成功的时间还是在它给我错误的时间内,令牌都是相同的,其他一切都是相同的。 有没有人有任何建议?
答案 0 :(得分:1)
我猜有时获取令牌的AJAX调用比加载JS SDK要快,你需要按顺序执行这些操作。现在你同时异步地完成它。
我不知道你为什么要进行AJAX调用(以及为什么你使用jQuery进行简单的AJAX调用,但这是另一个故事),如果你想获得一个APP令牌,你只需使用App ID和管道标志的App Secret:App-ID|App-Secret
- 当然,你应该只做那个服务器端。但是你应该将大部分代码移到服务器上,如果有很多用户点击你的页面,就要包含一些缓存。