Facebook Graph API:从某个位置获取有关每个签到时间的信息
有没有办法通过 Facebook Graph API 获取某个位置每次签到的具体信息。例如,如果位置 A 总共有 341 次签到,我可以在 FB 中查询每次签到的时间吗?
Is there a way to get specific information about each checkin at a location via the Facebook Graph API. For instance, if location A has 341 total checkins, can I query FB for the time of each of those checkins?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
/${PAGE_ID}/checkins
的 GET 查询 Graph API,但看起来这只会返回用户的签到(如果她被授予user_checkins
)&她朋友的签到(如果她被授予friends_checkins
)。如果您是该主页的所有者,您可能会看到更多内容;我没有测试过这个。
You can query the Graph API with a GET of
/${PAGE_ID}/checkins
but it looks like this will return only the user's checkins (if she's granteduser_checkins
) & her friends' checkins (if she's grantedfriends_checkins
).If you're the Page's owner you might be able to see more; I haven't tested this.