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 started to programming in Android a few weeks ago. And I have some Java skills.

So I am creating an app which needs to get the Facebook friends list (just the names not the pictures). I Googled and most people said "read the Facebook api". How can I get the list of friends?

share|improve this question

2 Answers

The friends.get command gives you all friends from a corresponding user. You find the description of the REST webservice command here http://developers.facebook.com/docs/reference/rest/friends.get/

If you program in Java you need the facebook java api http://code.google.com/p/facebook-java-api/

Here's a short example how to connect to facebook api and how to get a user's friends list and further operations http://code.google.com/p/facebook-java-api/wiki/Examples

share|improve this answer
Thanks for the answer. – Elias Flizer May 29 '12 at 2:54

Use the Facebook Graph API.

To implement the Facebook Graph API in an Android app, use the Facebook Android SDK - you can find it on github. It includes an example app called Hackbook. You can read about Hackbook's features here. By going through the Hackbook's code you can learn how to do user authorization and login to Facebook on Android.

The Hackbook contains sample code for how to get a list of friends - see source and details on Facebook Developer pages.

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.