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'];
}