2

我有 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"

但在一台计算机上我有未定义的 Object { data=[0]}

我在facebook上都登录了。有任何想法吗?

在FF我有

An active access token must be used to query information about the current user.
4

1 回答 1

0

您必须指定一个有效的 access_token

这是正确的方法

FB.api('/me/likes/pageid', {access_token: "YOUR_ACCESS_TOKEN"}, function(response) {
   console.log(response.data); 
});

您必须将“user_likes”添加到应用程序的范围内才能检索结果

于 2013-06-26T12:36:18.133 回答