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

Android error getting Facebook friends with some users

I'm trying to get the friends from facebook, but when I'm try with my personal account I get the friends that I have and uses the app. The problem is when I use an other account (this account has my personal account as friend) the app doesn't get…
0
votes
1 answer

App where i can see my friends location

I'm developing a google maps based app. I would like to integrate the capabilities of being able to see your friends location/s (similar to how you can see uber cars or fiend my friends). currently i have a facebook signin option. Does anyone know…
Miguel
  • 333
  • 2
  • 13
0
votes
0 answers

send messages to friends facebook sdk

I have implemented sending message to friends through api like below. function share(){ FB.ui({ appId : 'xxxxxxxx', method: 'send', to : ["xxxxxxxxx"], link : "https://www.facebook.com", name :…
0
votes
1 answer

returns friends who also use your app using only facebook graph API 2.2

I have created an application which I uses in a website for 'login through facebook' operation. Now this website has so many users who used to login through facebook. I want to retrieve only those friends who also use this app using facebook graph…
Poles
  • 3,585
  • 9
  • 43
  • 91
0
votes
1 answer

how to get facebook friends list in android

i have user_friends permission when user authenticates and i tried a lot to get friends list from facebook this is my call /* make the API call */ new Request( session, "/me/taggable_friends"…
Digit
  • 1,929
  • 1
  • 14
  • 17
0
votes
1 answer

Facebook API v2.1 - Identify Friends

First of all, let me explain my app base case. 1.- I Register the user trought FacebookLoginButton. 2.- I get the friend list (Fb_Id, name, pic) and register/update data from these people on my db. When i register the user, i try to identify him on…
0
votes
1 answer

Facebook login with PHP - /me/friends

I have the following PHP code which I am planning to use for my website. I also need to get the Facebook IDs of the user's friends who have also signed in to my website using my Facebook app before. I created an app and in the "Status & Review" page…
sguven
  • 41
  • 4
0
votes
1 answer

How to fetch Facebook user's full friend list in Facebook iOS SDK

I had a question concerning the Facebook iOS SDK that has been troubling me ever since i started my iOS project so I thought I could post it here to see if any of you had wisdom to share on this matter. For my Facebook connected app to function…
0
votes
1 answer

friends list among specific application users returns empty

this is similar to questions that appear in many threads, but there is an important difference, so it's a separate problem as far as i can tell. I am trying to fetch friends that are also users who have logged in to the same application, (the other…
0
votes
1 answer

Checking if two Facebook users are friends or not using Facebook's PHP SDK 4.0 without redirects

I'm working on an app and I need to determine if two users are friends. I am performing this task in an AJAX call so redirects would obviously break my AJAX response. Every time I check to see if I am friends with someone, it acts like my session…
Dennis Day
  • 607
  • 2
  • 5
  • 13
0
votes
1 answer

Friends list request from Corona SDK on Facebook API returns nothing

I've copied I code I used in an older game into my new game (it worked and still does in the old game) that I use to get the users friends list so I could publish (send) a message to which ever friends I want, inviting to play against me in my game,…
0
votes
1 answer

How to obtain all Facebook friends in Android

I'm trying to obtain a list of Facebook friends and to put it in a ListView on an Android app. Could you give me a hint or example of how to do this? I'm new in using Facebook SDK for Android and I don't know how to start.
0
votes
4 answers

How to get all friends from user's facebook account using facebook SDK ( iOS )?

I got one sample code (iOS) in which I am getting all user's friends (App Id = 377766775651612) but when I using own created app id (app id 707496825976004), I am getting the list of friends who are using my app. I want all friends Please help me…
0
votes
1 answer

Get users friends list in Graph API version 2.0

I am developing an application in which the user will be logged in using Facebook credentials. Once the user is logged in I need to retrieve the user's friends list. But as per new Facebook Graph API version 2.0,I cant get the list of friends until…
0
votes
2 answers

Retrieving list of Facebook friends who use iOS/Android

I'd like to target a message to my Facebook friends who use iOS, and separately, Android. If I'm going to recommend them a particular app, for example, I'd like to ping only those who have the right OS. Presumably Facebook has this information. …