Search Facebook Check-ins at given place

3.1k Views Asked by At

Is it possible to search and get user checkins or friend's checkins for a given place(lat/lon)?

1

There are 1 best solutions below

1
On

You can use FQL and the location_post table to find this.

SELECT id, page_id FROM location_post WHERE distance(latitude, longitude, '37.86564', '-122.25061') < 10000

...should show user and friend checkins near the lat/lon.

See the location_post Docs