An FQL table that returns Posts that have locations associated with them and that satisfy at least one of the following conditions:
you were tagged in the Post
a friend was tagged in the Post
you authored the Post
a friend authored the Post
The User object in the Graph API has a corresponding /locations connection. In addition, by including with=location in the URL parameters, the /home, /feed, and/post connections on the User object can be filtered to just those posts containing a location.
| Name | Description | ||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
app_id id | ID of the application that published the post | ||||||||||||||||
| id | ID of person publishing the post | ||||||||||||||||
coords struct | Coordinates of the checkin location | ||||||||||||||||
| |||||||||||||||||
| id | ID of the object associated with this location | ||||||||||||||||
| float | Latitude of the checkin location | ||||||||||||||||
| float | Longitude of the checkin location | ||||||||||||||||
message string | Message of the post story | ||||||||||||||||
| id | ID of the Facebook page associated with the location or event in the post | ||||||||||||||||
page_type string | Type of the target. For example, page and event | ||||||||||||||||
| string | ID of the post story | ||||||||||||||||
| array | IDs of users tagged in the checkin | ||||||||||||||||
timestamp timestamp | UNIX timestamp of the checkin | ||||||||||||||||
type string | The type of post. Either photo, checkin, video, or status | ||||||||||||||||
To read Posts with location information, you need:
user_photos or friends_photos for Photosuser_status or friends_status for Posts (not including Photos)user_checkins or friends_checkins for Checkins only (excluding all other types of Posts)Requesting the user_status or friends_status permissions will return information about Checkins as well as other types of objects.