Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to retrieve the user hometown through the Graph API, but the problem is my request only returns me the id and not the name of the hometown. It's the same when I try to enter information straight as a URL in the browser. Here is my code

//Retrieve hometown
$objet = file_get_contents('https://graph.facebook.com/'.$user['id'].'?fields=hometown&'.$app_access_token);
if (json_decode($objet,true) != NULL) {
    $user_infos = json_decode($objet,true);
    $user['hometown'] = $user_infos['hometown']['name'];
}
share|improve this question

1 Answer

User should be connected with you app and grant user_hometown permission before you able to access that field, you also need to use user's access_token instead of application access_token.

Beware that many users doesn't fill that field on Facebook, in that case you will get empty results even for users who granted required permissions.

BTW, there is also user_location permission which allow you to query location field of user which is different than hometown...

share|improve this answer
Very usefull. The only thing i am missing is the user's access token. How can i get it? – user867415 Feb 5 '12 at 14:51
1  
There is couple of ways depending on SDK you use. But generally you get one by authenticating the user. – Juicy Scripter Feb 5 '12 at 14:57

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.