Questions tagged [facebook-friends]

Questions related to Facebook Friends with facebook SDKs.

You can ask questions about usage of facebook friends in different SDKs like.

  1. Getting facebook friends list
  2. Checking facebook friends or not
  3. Messaging Friends
  4. Getting app friends
  5. Invite friends
  6. etc.
143 questions
1
vote
1 answer

How to list ALL friends using Graph API 3.x version?

I try to login user to my app with the following permissions: NSArray* permissions = [[NSArray alloc] initWithObjects:@"email", @"read_friendlists", @"user_friends", nil]; After login I don't get "read_friendlists" permission from…
1
vote
1 answer

Accessing Friends List on new FB APIs for non-app users

I am building an app where users can send picture messages to friends and would like users to see their Facebook friends list when they login through FB. However, I am confused by Facebook's new API information regarding the access that an app can…
1
vote
0 answers

getting my friends list empty data

i am using facebook-sdk-master i used to create Facebook APP, i can't getting my friend list,i want to get my friends list but it always returning empty data. my code : require '../src/facebook.php'; echo…
user4175452
  • 25
  • 1
  • 6
1
vote
2 answers

getting list of friends from facebook

Facebook API does not provide friends list of people using our fb app, according to their developer faq page. But still, websites like nimble and the live example of socialauth are able to get the names of people on our friend list, even those who…
Shabin Muhammed
  • 1,092
  • 2
  • 18
  • 29
1
vote
1 answer

Unable to get Facebook friends list

I'm using facebook sdk for c# and I have tried the code here :- you can see code in zip file download code zip file but problem in code is it is not retrieving friends list like i am using this line of code to get friends dynamic me =…
1
vote
1 answer

facebook request dialog android shows only a partial list of friends

Im trying to use facebook request dialog to enable the user to pick a friend to challenge in a turn based trivia android game. i dont have a web version of the game so i dont canvas. ive set up a request dialog that shows the list friends which…
Ido
  • 387
  • 1
  • 3
  • 10
1
vote
1 answer

Facebook API Mutual Friends Count (Count Only)

I would like to show mutual friends (Just a number X mutual friends - no other information) on a users profile who has signed up in an app I am working on. We had planned to do this using the list of friends ID's however this is now not accessible…
Tom
  • 37
  • 9
1
vote
1 answer

Get taggable friends Facebook Android

How can I improve this code? Parse Facebook GraphObject using gson I was working on Facebook taggable friends, I Have parsed the GraphObject may be helpful to others. Parse Taggable friends function :: user_friends permission required public void…
Faraz Ahmed
  • 1,245
  • 1
  • 14
  • 24
1
vote
1 answer

How to use FB FriendPickerFragment to show you list of all your friends in order to invite them to use your app

EDIT-----: So I did manage to make it show me users and be able to select some, and to send me back the selected users to my app but there is a slight problem. "Uri.parse("picker://friend");" doesn't give me the list of my friends, but only a list…
1
vote
0 answers

iOS Facebook invitable friends requirements

we are trying to get a list of invitable friends by the following API invitable_friends but we're stuck at the moment. By starting a FBequestConnection on "/me/invitable_friends" with the permissions "email", "public_profile" and "user_friends" we…
nickbw2003
  • 21
  • 2
1
vote
1 answer

Facebook friend list in Facebook Android SDK 3.14

I am trying to get friend list using Facebook Android SDK 3.14 but getting no results. Some pointed out that friends who are using my app can only be retrieved but I want to retrieve my complete friend list. Can anyone please tell me how can i…
1
vote
0 answers

Getting list of invited Facebook friends with Facebook API

I've adapted Facebook's example code to let me show the list of invited users... but I can't get a list. Can someone help me with the right syntax to get a list of invited friend? This is what i've come with so far: $invite =…
0
votes
3 answers

FQL Graph API: Mutual Friends

I know you can't get friends of friends, but can you get mutual friends using some query, in a computationally efficient manner? Could I even iterate through my friends to see which of them is friends with a target? Is there any good way to get…
JoshDG
  • 3,871
  • 10
  • 51
  • 85
0
votes
1 answer

PHP Facebook API: How to retrieve how long I've been friends with someone

I'm curious if it's possible to get the "friendship" information via the Facebook PHP API, meaning information about the friendship the logged in user and one of his friends share? Information that is visible on this…
Tanax
  • 433
  • 2
  • 10
  • 20
0
votes
0 answers

Facebook friends returning empty data

I implemented possibility to search friends from facebook who logged into my app using facebook. It was working, I was getting one facebook id as I supposed, but now I trying to work about functionalities around this and I am getting empty data. I…