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'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?

share|improve this question
1  
Please use the official PHP SDK instead of “manually” making requests against the API using file_get_contents – it makes so many things a lot easier and more convenient. So do yourself this favor … – CBroe Sep 17 '12 at 12:30
can you paste results which you are getting in browser ? because we can't access your url to show result – GBD Sep 17 '12 at 12:34
If you have an access_token, you don't need to inspect the $_SESSION either. You can use the path /me/friends/. – cpilko Sep 17 '12 at 12:56
@CBroe: I've just added the results. – Jones Sep 17 '12 at 13:04
Make sure that you have enabled http wrapper for file_get_contents. use allow_url_include = On in your php.ini . Also make sure that you have loaded openssl extension into php. – Ashwini Dhekane Sep 17 '12 at 13:25
show 2 more comments

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.