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
8
votes
3 answers

sending a private message to your friends via Facebook IOS SDK

I saw your post about sending messages to your Facebook friends via the IOS Facebook sdk, I was wondering if there is a way to send a private message as well to these friends. If not, is sending messages to your Facebook friends still supported…
joshua
  • 81
  • 1
  • 1
  • 3
7
votes
2 answers

Load Facebook friends into UITableView

I am working on integrating Facebook into my iOS app and am wondering how to load Facebook friends into a table view so that the user can select friends to invite to the game, similar to how it is done in Words With Friends. I know that [facebook…
7
votes
2 answers

FirebaseAuth android get Facebook friends list

I use facebook login in my app. Once the users are logged-in I can get their basic facebook info such as display name, email, and phot url. I'd like to get their facebook friends list. I think I can get it "directly" with firebase but I don't…
6
votes
2 answers

ios facebook get friendlist who play the same app

I can get the friendlist by [facebook requestWithGraphPath:@"me/friends" andDelegate:self]; But the list contain all the friends, how could I get the friendlist that only played the app.
Jack Shan
  • 61
  • 1
  • 4
6
votes
3 answers

User Friends permission in Facebook

I'm trying to add user_friends permission from facebook in my app. But I'm unable to test this feature cause i'm unable to get user_friends permission for test users. I have tested my feature on test-app and with it's test users. But while…
Vikram
  • 768
  • 2
  • 9
  • 23
5
votes
2 answers

Facebook Graph API: Get date of joinin

Follow up to this question for Facebook Friends.getAppUsers using Graph API that pulls friends using app by https://graph.facebook.com/me/friends?fields=installed is it possible to get date of joining also with the id’s?
Quintin Par
  • 15,862
  • 27
  • 93
  • 146
5
votes
3 answers

Unfriending someone through the Facebook API?

Is it possible to remove a friend relationship between two FB users through the API? I'm thinking that it's not, but (if not) is it possible to at least bring up a dialog that would let the user request the unfriending, similar to how the Friends…
Jim Miller
  • 3,291
  • 4
  • 39
  • 57
5
votes
1 answer

how to get a list of all user friends?

I am building an app using Facebook Graph API v.20. The first thing it needs to do is to export the complete list of friends from the user (ID, name and picture) to a CSV file. Is this possible?
4
votes
2 answers

Get relationship (friend, friend of friend) between two Facebook ids by facebook api

How can I check for the relation between two facebook ids.? i.e friend, friend of friend or there is no relation. By fql or graph api methods(anything). I know how to get the friend list, mutual friends of facebook id. But I want a proper method…
4
votes
1 answer

Inviting Facebook friends through iPhone App

I've been searching this question, and I haven't been able to find anything that works. I have an iPhone app that allows users to link their Facebook account. It would look something like this: Once a user has successfully linked to FB, I want to…
user965985
  • 313
  • 1
  • 3
  • 8
4
votes
2 answers

Send Facebook App Request/Invite using Graph Api

I have the following code that would get ur friends list using graph api function getFriendsList(){ $response = $this->api('/me/friends'); return $response; } This returns friends id and name. using graph api I then execute this…
ivias
  • 249
  • 1
  • 3
  • 15
4
votes
4 answers

Get the Friends of my friend using the Graph API

I am trying to do a very basic thing with the new Graph API. I already know how to get my friends: "https://graph.facebook.com/me/friends?access_token=4333ed34d..." But if I have a friend who's ID is 123456, then I want to get his friends…
Yaron Levi
  • 12,535
  • 16
  • 69
  • 118
4
votes
2 answers

Facebook Friends Request - Missing Friends

I am requesting to get user friends from an Android App that I am developing. As from Facebook Api V2.0 I know that I should get only user friends that have already logged in through my App. However, although I know certain friends of a user have…
z3n105
  • 1,935
  • 1
  • 15
  • 14
3
votes
2 answers

Facebook friend counter

What I'm trying to do is a counter of facebook friends in php, so the result of the code would be something like "You have 1342 Friends!". So this is the code im using:
3
votes
1 answer

Accepting Friend Request with facebook API

It is possible to accept a friend request with facebook API ? Not the Javascript SDK ones.
1
2
3
9 10