My app lets users checkin with lat, lon and place name to Facebook. But I don't know how to deal with "place" parameter.
Is there any way to get or create one?
|
My app lets users checkin with lat, lon and place name to Facebook. But I don't know how to deal with "place" parameter. Is there any way to get or create one? |
||||
|
|
|
Each checkinable place must have a valid Place Facebook Page. The For example, If your application is letting your users to checkin based on their current location 1) Use an external map service such as Google Map's Geolocation to get the coordinates(lat & lon) of your user's current location. The set of coordinates returned from Google Map is different from Facebook's own set of coordinates. 2) To overcome this, do a FQL query to find the closest match of Facebook's coordinates with Google Map's coordinates.
3) Now that you have You can refer to publish checkin examples that I have posted over here. Facebook - Publish Checkins using PHP SDK/JavaScript SDK If your application is letting your users to checkin based on selection from a list of place names or gallery of images (in a game or something) You will just need to find the Documentation Page FQL - http://developers.facebook.com/docs/reference/fql/page/ Checkins API - http://developers.facebook.com/docs/reference/api/user/#checkins |
||||
|
|