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
0
votes
1 answer

Facebook API match between my id and a friend's id

I know my title seems vague, but that's the best I could do to describe my problem. I'm using Facebook Graph API for my multiplayer game. When I connect, I get my own Facebook ID, but when I retrieve my friends, I get their encrypt ID. I would like…
trueicecold
  • 820
  • 10
  • 23
0
votes
0 answers

FB api for Unity3d. Select all friends

I use FB api for selecting friends for my app with following code (doc) FB.AppRequest( message, null, new List (){ "app_users" }, null, null, jsonData, null, RequestResult …
LuckSound
  • 986
  • 2
  • 12
  • 35
0
votes
1 answer

Can I get the likes that I gave to my friend's posts from the Facebook Graph API?

Throug the Facebook Graph API explorer, I can get my likes on third pages through: GET /v2.6/me/likes HTTP/1.1 Host: graph.facebook.com But, what if I want to get my likes on my friend's posts, considering that are my likes I think I should be able…
user2558829
0
votes
1 answer

How to fetch Friend list from facebook in iOS 9 fb sdk 4.8 or above?

I am using way mentioned below to find friend list but it is not working. And earlier methods i used (FBRequestConnection) is not working any more may be they are not supported any more. Please guide. FBSDKGraphRequest *request = [[FBSDKGraphRequest…
iPhone 7
  • 1,731
  • 1
  • 27
  • 63
0
votes
2 answers

Graph Path and Parameters for getting facebook friends list in Swift

I'm using the below code to get the friends list, let fbRequest = FBSDKGraphRequest(graphPath:"/me/friends", parameters:["fields": "friendlists"]); fbRequest.startWithCompletionHandler { (connection : FBSDKGraphRequestConnection!, result :…
Nazik
  • 8,696
  • 27
  • 77
  • 123
0
votes
1 answer

Getting empty friends list

My goal is to get a list of user facebook friends using Facebook Graph API. At least those, who have used social authentication on my website I have read, that after v2.0 I can get only a list of friends, if the following conditions are met: A user…
0
votes
1 answer

token_for_business for Facebook friends

I'm making a facebook login and saving user "token_for_business" in my database. Now i'd like to make a friends only ranking. Can I retrieve my facebook friends token_for_business too or should I store their app-scoped IDs on another table and make…
0
votes
2 answers

Is Facebook now anti-social, or is there hope for connecting users with their friends via API?

My latest project has (had) a requirement for the user to invite their friends to their online service. I discovered that, apparently, as of April 2015 with the new v2.0+ Facebook Graph API, you cannot actually get a list of friends for the user,…
0
votes
0 answers

Facebook friend list Error

In my own app, i ask users friend facebook friend list. This allows me to display a list of user's facebook friends that also use my app. However Ive encountered some error with MY OWN facebook account. If i log in to my app with other facebook…
0
votes
1 answer

Unable to get all Facebook friends in iOS

In my application I have an option to get all Facebook friends. So I want to my all Facebook friends. But enable to get all friend. I am using API version v2.4 and when I was check API in Facebook graph explore its give me response like this: Graph…
Monika Patel
  • 2,287
  • 3
  • 20
  • 45
0
votes
1 answer

Fetch Facebook Friends list that not installed my app

i want to fectch fb friends list that have not used or installed my app. and is there any other way that i fetch Friend unique id. because withour friend id i can't send invitation to use my app or game. please help me. . I have used FacebookSDk…
RAMA
  • 59
  • 11
0
votes
0 answers

Connecting Facebook's API "taggable_friends" and "friends" Nodes

I'm working on a webapp and we're integrating facebook (through facebook's sdk and graph api so user's can have a simple profile created on login. I've gone through 'most' of version 2.3's documentation and learned about all the new permission…
0
votes
1 answer

How can I filter taggable friends list and only retrieve the ones that are not already part of friends list using Facebook graph API

As you know, with Facebook Graph API v2.0 upgrade you no longer can retrieve all the friends using the "me/friends" endpoint. That endpoint will now return only those friends who are also registered for the same app (app-scoped users). To retrieve…
0
votes
3 answers

Fb Friends List Export - How does yahoo do it if its not allowed?

I am looking into getting FB friends via some fb API for my app. However, I read at a lot of places that its no longer allowed to get all friends, but only those who are also using the app. For example: 1]…
0
votes
1 answer

facebook graph api pagination not giving results for friends

I am using graphi api to retrieve the name and id of my friends. In Graphy API Explorer, I use the query me/friends?fields=id,name It gives me 25 results on first page, with a next in paging section. When I try to get the next page. It returns me…