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.
144 questions
0
votes
0 answers

how to get friends list in facebook using latest SDK version

In my Android application I am using Facebook integration.How can I get friends list with id,name,profile picture? I got the following error response from facebook: {Response: responseCode: 200, graphObject:…
M.A.Murali
  • 9,158
  • 30
  • 98
  • 169
0
votes
1 answer

FQL "X and Y are now friends"

I'm trying to get all the recent activity posts where I become friends with another person. Is it possible to retreive the information though the FQL or another way? I tried to use the stream to the base minimum - by adding a new friend and use the…
0
votes
1 answer

How to get ALL FB friends, not just the ones using my app?

I am developing a WP8 app and I am trying to get a list of users friends. I am using the FB SDK for .NET . On developers.facebook.com in the Status & Review section of my app, I have this: LOGIN PERMISSIONS email - Provides access to the person's…
0
votes
1 answer

How do I post some message on a friend's wall using the Android Facebook SDK?

protected void postToWall(String userID){ try { if (isSession()) { String response = mFacebook.request((userID == null) ? "me" : userID); Bundle params = new Bundle(); params.putString("message", "put message here"); …
Hamra Rehan
  • 161
  • 2
  • 3
  • 7
0
votes
1 answer

Get Facebook Friends list and display it in custom view?

I'm trying to get FaceBook Friend list , and display it in custom view like "foresqure App" what I mean "foursquare" ask for the permission and to post on your wall inside the app without leaving the app to the browser or to the app Facebook ? …
Omarj
  • 1,135
  • 2
  • 16
  • 42
0
votes
1 answer

iOS FBOpenGraphAction and taggable_friends

Does anyone know if i can use the tagging token (retrieved using taggable_friends graph api) to set the tags of a FBOpenGraphAction object?
0
votes
2 answers

Get friend list from facebook who downloaded the app in android using parse

I am developing the app which is login through the facebook account using link and use the parse to store data in backend Parse Facebook Example My requirement for this app is to get Facebook Friend List who downloaded this app on there phone ... I…
0
votes
1 answer

Determining if users are facebook friends (Parsing)

I'd like to find out if the current user is friends with the root node user, using Koala, and if so, print a statement saying: you are friends. My problem is the parsing of data returned from facebook. user.rb def facebook @facebook ||=…
0
votes
1 answer

How can I know how many friends of are using an application

Possible Duplicate: Facebook Graph API - Friends using application I'm new programming on Facebook SDK and I've some questions... I developed an application where a user can login through facebook (it's tested and working nice) and I can show…
Danny
  • 11
0
votes
1 answer

Friend Requests

In the following example: http://developers.facebook.com/docs/reference/dialogs/requests/ how can I fill the friend lists drop down with the users custom lists?
0
votes
1 answer

Facebook app development: select friend

I am working on a Facebook app for sharing recipes and creating menus with friends: https://apps.facebook.com/336259823101185 I would like to create a way to select a friend and get their id (but not send any notifications or anything). Is there…
-1
votes
1 answer

Access facebook friendlist from Asp.net C# using graph API

The user friend list return no data only summary with total friend count. I am working on a web application which will fetch logged in user face book friend list and then use their birthday to post birthday message in their profile. Is there a way I…
-1
votes
1 answer

Get all User Facebook Friends, not only the ones who have used the app

is there anyway to get all the friends from a user using the graph api? In christmas I did an app where i used "me/taggable_friends" to retrieve the list and tag those users on a photo, but right now I just want to retrieve the list and then send a…
Miguel Rebola
  • 110
  • 1
  • 1
  • 12
-1
votes
1 answer

Sort Facebook friends alphabetically PHP SDK v5

I have a question about echoing the data that Facebook returns from the Graph API. I use the following code to get the the facebook friends using my app and their profile picture (and the ID because later I need to match them to my…
-1
votes
3 answers

How can I get the list of user_friends from a Facebook authorized user?

I was researching about the possibility of viewing the list of friends for a certain user after the user authorizes the application to view his user_friends, but I did not quite grasp the idea, so I was wondering, is there a direct way to view the…
1 2 3
9
10