Hi I am working with android.I had integrate facebook sdk to my android app. Now I want to retrieve my facebook contacts to my android app. Is it possible??? Please help me with some examples , thank you
Asked
Active
Viewed 247 times
0
-
what you tried so far? – Kamlesh Arya Jan 30 '14 at 05:33
-
I tried using Graph API, but I cant access my facebook contact list – doubter Jan 30 '14 at 05:35
-
i need to see your code to give you some solution..although i gave basic implementation in my answer below – Kamlesh Arya Jan 30 '14 at 05:36
-
check here http://stackoverflow.com/questions/6236251/android-get-facebook-friends-list hope you will get answer of your question. – Namrata Jan 30 '14 at 05:43
1 Answers
0
Request request = Request.newMyFriendsRequest(
Session.getActiveSession(),
new Request.GraphUserListCallback() {
@Override
public void onCompleted(List<GraphUser> users, Response response) {
System.out.println("Users: " + users);
}
});
request.executeAsync();
prince
- 332
- 3
- 13