Facebook: How to get list of last friends checkins using graph API or FQL -


the following graph api gets first checkin each friend. how last checkin?

me/friends?fields=checkins.limit(1).fields(from,message,place.fields(id,name,location,likes,website,phone,description,checkins),tags)

note can remove limit going give me checkins not want.

i think helpfull: https://stackoverflow.com/a/7743148/775109

a graph api request following

https://graph.facebook.com/me/friends?access_token=yourtoken &fields=checkins.limit(1)&format=json&offset=0 

Comments