Is there a way to get the location of my facebook friends using the Graph API?
|
Your friend is considered a user, so you go to the user documentation, get the field name
HOWEVER there's a typo! to get your friend's location you need the Here's a PHP-SDK example:
Here I'm retrieving the |
|||||||
|
|
The fastest way to get all the information you want from friends of a user you can use the FQL method:
For a list of all the tables with their corresponding column names I refer to: Facebook FQL Reference |
|||
|
|
|
The FaceBook Documentation has the information you're looking for, including sample code and instructions. It's available at: http://developers.facebook.com/docs/guides/canvas You may also find the Graph API useful: http://developers.facebook.com/docs/api |
|||||||
|
|
https://graph.facebook.com/me/friends?access_token="get this from fb tool"&fields=location |
|||
|
|
Requires user_location or friend_location permission |
|||
|
|