facebook-checkins

Graph Checkin method returns empty data

有些话、适合烂在心里 提交于 2019-12-13 22:01:31
问题 I'm trying to get to work the Checkin method, but currently I only get empty data: { "data": [ ]} Whether using this http://developers.facebook.com/tools/explorer/?method=GET&path=me%2Fcheckins or using https://graph.facebook.com/me/checkins&access_token=ACCESS_TOKEN I only get no data. I've checked in several locations, I has been tagged also in photos taken and uploaded using location; but no luck. The main goal is to get RTU working with checkin events working...but, if I can not get it to

Can't get facebook checkins, data array always empty

半腔热情 提交于 2019-12-11 05:55:59
问题 I have a strange behavior when trying to get the checkins of a place or user: the result is always an empty data array: { "data": [ ] } This happens when I use the Graph Explorer: /4/checkins or when I use FQL: SELECT checkin_id, author_uid, page_id, timestamp from checkin where page_id = 111856692159256 or when using javascript: FB.api("/me/checkins", function(response){ console.log(response); }); I always use an access_token, even ones with ALL permissions available. Simply no result. I

how to find friend's past checkins near a location?

爱⌒轻易说出口 提交于 2019-12-05 03:45:09
问题 In my app, a user is at a location and is looking for her friends who have been anywhere withing 10 miles of where she is. How do I find this with either FQL or graph? The only way that I can see is by running a search like so: https://graph.facebook.com/search?type=checkin and then running through the results to find out which location was within 10 miles. Is there a better way for this? Thanks for your help! Doles 回答1: From http://developers.facebook.com/docs/reference/fql/location_post/ It