Facebook Graph API checkin list

时光总嘲笑我的痴心妄想 提交于 2019-12-12 06:18:05

问题


Im looking for a way to use the Graph API to gather a list of users currently "checked in" to a particular place.

Any help is greatly appreciated!!!

Thanks Chris


回答1:


To get a list of Users is not possible, because you'd then need the individual User's permission (respectively the Access Token) to access their checkin data (which I guess you don't have).

What you could is just to request the number of checkins on an hourly schedule with the mentioned FQL query. Then you could store/calculate this for yourself.

Use the following call:

https://graph.facebook.com/fql?q=SELECT%20checkin_count%2C%20name%20FROM%20plac‌e%20WHERE%20page_id%3D155669083273&access_token={your_app_access_token}


来源:https://stackoverflow.com/questions/24146745/facebook-graph-api-checkin-list

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!