我遇到fb api的问题。
FB.api('/me/likes/pageid',function(response) {
console.log(response.data);
});
我有
Object
category: "Entertainment"
created_time: "2012-09-17T16:56:56+0000"
id: "pageid"
name: "site.com"
但是在一台计算机上我有未定义的对象{data = [0]}
我在facebook上登录。任何想法?
在FF中我有
An active access token must be used to query information about the current user.
答案 0 :(得分:0)
您必须指定有效的access_token
这是正确的方法
FB.api('/me/likes/pageid', {access_token: "YOUR_ACCESS_TOKEN"}, function(response) {
console.log(response.data);
});
您必须将“user_likes”添加到应用范围才能检索结果