-1

Using the normal Facebook website, one can get to a page showing which pages a user has 'liked'.

From the graph API, it is possible to get this for pretty much all pages, using graph.facebook.com/userid/likes?access_token=MYACCESSTOKEN.

However, I need to be able to do the same - i.e. get the list of pages a user has 'liked' for normal Facebook users (and not 'pages' who have 'liked' other pages).

Is this possible with the single access token? Judging by the fact you can get this info from the normal Facebook web page, I would expect it to be possible.

4

1 回答 1

1

对于访问 API 的应用程序和访问实际站点的用户,隐私的工作方式略有不同。

应用程序无权访问(默认情况下)您朋友的点赞,以防止数据挖掘。为了获得用户朋友的喜欢,您需要请求friends_likes权限。

您可以在文档中阅读有关此权限和其他权限的信息。

于 2013-02-14T15:25:17.417 回答