我可以检索“检查”吗?我在Facebook上做过

时间:2012-06-29 19:31:52

标签: facebook

我想通过Facebook的“登记入住”按钮查看我所做的所有检查项目。我可以进行API调用吗?

Foursquare让你这样做,看不到关于FB的任何参考。

2 个答案:

答案 0 :(得分:0)

可以通过checkins对象的user连接检索签到,您还需要user_checkins权限(如果您检索朋友的签到,则需要friends_checkins。)

此外,您还可以通过FQL访问相同的数据:

SELECT coords, tagged_uids, page_id FROM checkin WHERE author_uid=me()

您可能还想阅读documentation of checkin objectdocumentation for checkin table (FQL)

答案 1 :(得分:0)

请参阅https://developers.facebook.com/docs/reference/api/checkin/

Place字段返回

  

包含Page id,name和location的对象;位置包括   具体的纬度和经度以及有关的信息   邮政地址,如果有的话

您也可以使用:

  

签到:https://graph.facebook.com/search?type=checkin(此请求   返回您或您朋友的最新签到,或签到您或您的地方   你的朋友已被贴上标签;目前,它不接受q =   参数。)

我认为第二种更符合您的需求。

第三种方法是使用FQL:

https://developers.facebook.com/docs/reference/fql/checkin/