我想在facebook页面上使用javascript SDK获取相似数量。我正在使用......
FB.api(
"/pageID/likes",
function (response) {
if (response && !response.error) {
/* handle the result */
}
}
);
返回: {message:"要求此资源需要访问令牌。",键入:" OAuthException",代码:104,...}
如何获取访问令牌?在此先感谢!
答案 0 :(得分:1)
This link可以帮到你。当您使用API时,您总是需要允许令牌才能请求它。 Facebook have a platform登录并获取令牌。 Facebook有一个full documentation here。