问题
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%20place%20WHERE%20page_id%3D155669083273&access_token={your_app_access_token}
来源:https://stackoverflow.com/questions/24146745/facebook-graph-api-checkin-list