获取“曾经在这里”的 # 个人来自带有 FQL 的 Facebook 页面
我正在尝试使用公开信息获取 Facebook 页面的一些统计数据 - 特别是有多少人在该地方被标记过。
我使用 FQL 检索特定 page_id
的签入数量 - 效果很好。查询:SELECT checkins FROM page WHERE page_id=PAGEID
。
但是我注意到签到数与 Facebook 页面上列出的数字不同。 “这里有 4,600 人”。
所以我有两个问题。
- 如果有人签到某个地点并标记了另外 4 个朋友,这是否只会使“签到”字段增加 1 或 5?
- 是否有可能获得“在这里”的人数(即 Facebook 页面上列出的人数)?
I am trying to get some statistics for a facebook page using publicly available information - particularly how many people have ever been tagged at that place.
I used FQL to retrieve the # of checkins for a specific page_id
- which works fine. Query: SELECT checkins FROM page WHERE page_id=PAGEID
.
However I noticed that the # of checkins is a different number than the number that is listed on the facebook page ie. "4,600 Were Here".
So I have two questions.
- If somebody checks into a place and tags 4 other friends there with them, does that only increment the field "checkins" by 1 or by 5?
- Is it possible to get the number of individual people that "were here" (ie. the number that is listed on the facebook page)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为这个问题在这里讨论:
Facebook 签入数量错误Facebook Graph API
我遇到了同样的问题。基本上,API 返回签入的用户数量,但“在此处”计数返回签入的用户数量 + 数量。他们标记的用户数量。无法通过 API 访问“此处”计数。
...我认为...
I think this issue is discussed here:
Wrong number of Facebook checkins via Facebook Graph API
I am having the same problem. Basically, the API returns number of users who checked in, but the "were here" count returns number of users who checked in + no. of users they tagged with them. The "were here" count is not accessible via the API.
...I think...