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.

Earlier when I open graph.facebook.com, I can get the ID's of all the friends of mine at one place but now I am getting redirect to another developer page.

enter image description here

I want to know whether any method still left by which I can get the friend's ID at once. I know that graph.facebook.com/username feature, but I want to have all at once.

Thanks in Advance

share|improve this question
1  
The /me/friends path still works. – cpilko Jan 18 at 17:22

2 Answers

The path graph.facebook.com/[user id]?fields=friends.fields(id) will get what you want. You just have to make sure to send the appropriate credentials.

I recommend you use Facebook's Graph Explorer tool. It is handy to select what you want.

http://developers.facebook.com/tools/explorer/?method=GET&path=511552816%3Ffields%3Did%2Cname

share|improve this answer

Here is an example using the facebook-php-sdk that will return the id number for all your friends from within your application:

include_once('facebook-php-sdk/src/facebook.php');
$facebook = new Facebook(array(
  'appId'  => '<your_app_id>',
  'secret' => '<your_app_secret>',
));
$result = $facebook->api("/me/friends?limit=0");
$friends = array();
foreach($result['data'] as $index => $friend):
   $friends[] = $friend['id'];
endforeach;
share|improve this answer

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.