我正在尝试从 Graph API 获取照片的点赞数,但点赞总数与 facebook.com 本身显示的点赞总数不同
我正在访问的图片来自一个页面,我是该页面的管理员。获取访问令牌还包括“manage_pages”范围。
The number of likes from facebook.com is 2,755
**
Accessing at the graph api using my access token
https://graph.facebook.com/10150710493857xxx/likes?limit=999999&access_token=...
The number likes is 2731
**
Accessing at the graph api using the page's access token
https://graph.facebook.com/10150710493857xxx/likes?limit=999999&access_token=...
The number likes is also 2731
**
And accessing at the graph api with no access token
https://graph.facebook.com/10150710493857xxx/likes?limit=999999
The number likes is 2734
有没有办法让来自 facebook graph api 请求的点赞数与 facebook 页面指示的点赞数相同?
facebook graph api 查询中是否有任何错误?