yav
yav

Reputation: 51

is it possible to get friend list by uid?

If i have uid of user is there any way to fetch the user list of this user? i tried "SELECT uid2 FROM friend WHERE uid1=UID" but this return permission error.

My purpose is to find out if me and given user has mutual friends of second, third etc. degree.

thank you. Any help will be appreciated

Upvotes: 1

Views: 643

Answers (2)

Sarfraz
Sarfraz

Reputation: 382746

Nope, you can't get users who are not authorized, this will be againts facebook's policy. The only way is to get them to give you offline_access and then you can use them any time through the life time of your application.

Upvotes: 0

Mike Sherov
Mike Sherov

Reputation: 13427

You can only retrieve friend lists of users who have authorized your application.

Upvotes: 1

Related Questions