Arvind Kanjariya
Arvind Kanjariya

Reputation: 2097

How to fetch basic data of friends in facebook integration android

I am integrating facebook sdk in android. Currently I completed with

Now I want users friends basic information like (Name, email,picture,birthday,gender, location etc)..

I have friend list and now on list item click i want friends basic detail.

Please help me for this... Thanks in advance.

Upvotes: 0

Views: 341

Answers (1)

Sahil Mittal
Sahil Mittal

Reputation: 20753

You'll get it in the same you you got the details of the user. Just like this-

/<friend-id>?fields=....

Of course, you need to ask for the permissions to get some of the details. List of permissions for fetching the friends data(other than the basic details)-

enter image description here

Another thing- there's no way you can fetch the friends email.

Upvotes: 2

Related Questions