I'm working on a prototype of a Facebook app. I'm loading a list of Facebook friends, once a user is authenticated. I'm getting a valid auth token, so I'm pretty sure, there isn't any problem.
I'm using this code to get a list of friends:
$urltofriends = "https://graph.facebook.com/" . $_SESSION['User']['id'] . "/friends?access_token=" . $access_token . "&fields=first_name,gender,relationship_status";
$string = file_get_contents($urltofriends);
$json_a = json_decode($string, true);
I'm getting a list of friends when I'm opening $urltofriends in a browser (even if I'm using an incognito window):
{
"data": [
{
"first_name": "Hillary",
"gender": "female",
"relationship_status": "In a relationship",
"id": "7931589"
},
{
"first_name": "David",
"gender": "male",
"relationship_status": "In a relationship",
"id": "26805490"
},
{
...
Unfortunately, this doesn't work in the code. But when I'm saving the result of the 'link' in a json file, uploading it on my server and using the following, everything works just fine:
$urltofriends = 'friends.js';
$string = file_get_contents($urltofriends);
$json_a = json_decode($string, true);
What am I doing wrong?
/me/friends/. – cpilko Sep 17 '12 at 12:56