获取 facebook 个人资料图片上的喜欢数量(graph api)

问题描述:

我有一个 Facebook 用户 ID 列表.我想通过 Graph API 获取他们个人资料图片上的点赞数.

I have a list of Facebook userid-s. I would like to get the number of likes on their profile picture via Graph API.

类似于:

https://graph.facebook.com/$userid/picture/likes

它不起作用(显然 :-))...不幸的是,我在 Graph API 文档中也找不到任何关于此的信息.你有什么想法吗?

It's not working (obviously :-))... Unfortunately I can't find anything about this on the Graph API documentation, either. Do you have any idea?

非常感谢!

托米

您可以尝试以下 FQL 查询:

You can try the following FQL query:

select pid, like_info.like_count from photo where aid in (select aid from album where owner = me() and name='Profile Pictures') and position = 0