Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
The friend tag has no wiki summary.
0
votes
0answers
26 views
Posting a plain text on friend's wall not working from my app
I am using graph API in my app for communicating to Facebook server. For posting plain text, I am using post request with "userId/feed" API. I am getting "Success" acknowledgement from the server, but ...
-3
votes
0answers
23 views
Chosing “Not Now” and “Unfriend” is not working to add people as Followers [closed]
Usually selecting "Not Now" or "Unfriend" would result in people being added to the Follower list. I even get a notification when I unfriend someone that they will remain a follower however in the ...
0
votes
1answer
64 views
Facebook FQL PHP - Get Friend's Friendlist?
In FQL/PHP, how to get the friendlist of a friend? I can not find in the Facebook Developer API Documentations also.
I used something similar like this:
SELECT uid, first_name, last_name FROM user ...
0
votes
2answers
37 views
Save Facebook friend pictures to documents rapidly
I don't have any clue what so ever and hence I am giving it up to some one who can assist me a proper way.Actually I have retrieved the Facebook friends details using FQL query,in which the profile ...
0
votes
1answer
89 views
Facebook api php select friend by id
I want to get the birthday date of a specific friend using facebook api php. I have the friend's id passed from a form with a friend list in te variable $_POST[friend_id]. I'm doing something like ...
0
votes
1answer
97 views
Facebook api php get specific friend profile
I want to know the date of birth of a specific friend. I'm using something like this. Is possible get this friend profile field?
$user = $facebook->getUser();
$perms = array('scope' => ...
0
votes
2answers
133 views
Facebook api friends list
I'm using Facebook's javascript SDK to inspect the friends list of users registered in my application.
I have this call:
FB.getLoginStatus(function (response) {
if (response.status == ...
0
votes
0answers
55 views
Sending Facebook Friend list to server
I have to send my Facebook friend list from my Cocos2d-x game to my php server. Currently how I'm doing this is sending it through my url. I append 50 friend id's at a time to my url and use the curl ...
0
votes
2answers
156 views
Parse retrieved Facebook friend details data
I have used FQL query in order to retrieve the friends list at a time:
-(void)fetchSaveUserFriendDetails
{
NSString* query = [NSString stringWithFormat:@"SELECT uid,name,birthday_date FROM user ...
1
vote
0answers
148 views
Post message to Facebook Friends wall on his/her birthday using sdk 3.0 - ios
I am already aware of the fact that we can post to friends wall using Graph API or Feed Dialogue,there are several constraints while doing so:
Graph API: We are no longer able to post to other users ...
1
vote
1answer
339 views
Android Facebook SDK 3 posting to friends feed doesnt work
Can someone send REALLY working NOW simple?
I'm use next:
1) Make authorization in app
2) then on button pressed publishFeedDialog();
private void publishFeedDialog() {
Bundle params = new ...
0
votes
1answer
215 views
Sync Facebook user friends birthdays to my xcode application
Lot of confusion understanding when I googled and studied tutorials like Getting Started with the Facebook SDK for iOS ,Legacy iOS Tutorial etc.I have downloaded the FacebookSDK-3.0 as I use Xcode ...
0
votes
1answer
81 views
Add a friend with iOS SDK
I'm working hard to find out a way to send a friendship request
to a Facebook user using the iOS Facebook SDK (v.3.2). But it seems
the SDK does not provide the API to do that.
Anyone could tell me ...
0
votes
1answer
196 views
FQL query to get tagged photos of specific user returning error
How to get tagged photos from particular friend? I'm now using this code
SELECT pid,src,images FROM photo WHERE object_id IN (SELECT object_id FROM photo_tag WHERE subject=$uid)
this is the ...
0
votes
0answers
14 views
How to get tagged photos from particular friend using Facebook FQL [duplicate]
How to get tagged photos from particular friend? I'm now using this code
SELECT src,src_big FROM photo WHERE pid IN (SELECT pid FROM photo_tag WHERE subject=$uid)
This one working for some friends? ...
0
votes
0answers
14 views
how to display friends of particular user in facebook with the score
I want to display the friend list of a particular user in the facebook iframe.
I tried this query. but it didnt work
query: 'SELECT flid, owner, name FROM friendlist WHERE owner=me()
any body ...
-1
votes
1answer
656 views
Post to friends timeline using the feed dialog example c# api
I am trying to post something on my friend's timeline and I keep on getting an error every time i try to do it. the code i am using is below. i wonder if the code is correct? Cause it doesn't work for ...
0
votes
0answers
18 views
All the likes of a friend's object
I am trying to make some statistics about persons who liked posts of my friends only.
I can get the list of my friends, I can get their posts but when I try to get the likes, of a photo for example, ...
0
votes
1answer
512 views
Posting to friends wall with dialog feed? (fb feb 6th '13 changes)
I'm using PHP SDK to create a post to a friends wall, before the feb 6th changes, I just used the graph api and /[friend id]/feed/ with post and parameters. I'm not sure exactly how to use the dialog ...
3
votes
1answer
444 views
Using Facebook for iOS SDK 3.1 how to post to friend's timeline avoiding deprecated headers
Given that Facebook has just completed "Removing ability to post to friends walls via Graph API" posted at their roadmap completed changes page.
evidently due to some abuses
...
1
vote
0answers
77 views
Customize facebook send dialog
I need to send message to my facebooks friends which should include:
- picture
- url
- my custom message
and I need to know to whom this message was sent.
Functionality is similar to Spotify.com ...
0
votes
0answers
74 views
How can a Facebook app automatically invite a member's friend
I recently received a notification on Facebook saying that one of my friends had invited me to join a Facebook app (SchoolFeed).
After I registered, the SchoolFeed automatically invited a lot of my ...
0
votes
0answers
119 views
send access token to facebook feed dialog
How do I send access token or authorization to the dialog feed that posts to a friend's wall using https://www.facebook.com/dialog/feed?appid=...
Currently it asks the user to login before it shows ...
0
votes
1answer
163 views
Post to Friends Wall in Windows 8 Application
The graphi api profile_id/feed to post to a friend's wall is being deprecated.
The blog https://developers.facebook.com/blog/post/2012/10/10/growing-quality-apps-with-open-graph/ directs that the ...
0
votes
1answer
180 views
getting facebook friends list who have installed an app
It's possible to know the facebook friends that they have installed a my fb app?
I have tried some ways directly using the online facebook developer tool but I have not been able to find a solution. I ...
0
votes
0answers
12 views
Can we use API for classifying contacts?
If we can use the API for listing someone friends,
and use FriendList
to add/delete friends from a list,
then it should be possible to classify friends in list.
I'm talking about searching, ...
2
votes
1answer
232 views
Facebook API Friend Location object being returned with empty string for id and null for name
Yesterday, when I retrieved my Facebook Friends from the Graph API using the query "me/friends?fields=id,location" 500+ came back with location data.
Today, 500+ are returned with the location ...
1
vote
1answer
138 views
Using FBFriendPickerViewController with Parse framework
I'm trying to build a facebook friend selector. At the moment I'm using the Parse framework for logging into my app using my Fb account. Do you know if it's possible to use the FacebookSDK's ...
2
votes
3answers
246 views
Android checking all the friends in Facebook FriendPicker sample program
I want to know how to select all the friends in Facebook's FriendPicker sample program. I added a 'select all' button in Pickerfragment class. But i couldn't able to find the way to check all the ...
0
votes
1answer
29 views
How can I know how many friends of are using an application [duplicate]
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 ...
0
votes
1answer
112 views
invite friends with php permissions error
Error occur when i invite friend to a public event. (event with can_invite_friend)
If i get permissions with fql, create event is set to 1.
The error : Application does not have permission for this ...
-2
votes
1answer
2k views
How to find all the friend requests not accepted yet [closed]
I would like to delete all the friend requests I have made in Facebook that are not accepted yet by other people.
Is it possible to find them all? Because when I am looking in my friends list I can't ...
3
votes
1answer
91 views
Facebook App featuring secret friend's name?
Is it possible to create a facebook app without totally showing who used the app?
For example, I'd like to post a wall message to one of my friends. But when the message appears on my friend's wall, ...
-1
votes
1answer
93 views
Getting friend list From Facebook using Flex with GraphAPI 1.8.1 [closed]
I'm trying to get my friend list using flex Air with GraphAPI 1.8.1 , I searched everywhere but all the sources using old Facebook SDK or Old lib.
Thanks in advance
0
votes
2answers
168 views
Facebook API (Javascript): Posting to a friendlist
Can someone point me in the right direction for publishing a post to a friendlist using the Facebook JS API? I have so far been using this code:
FB.api('me/feed', 'post', { message: msg,privacy: ...
2
votes
1answer
749 views
Oauth error message “Missing message or attachment”, “type”:“OAuthException”,“code”:100 in android while Facebook post on friends wall
I want to give user of my application an option to log-in into my application using Facebook account. And I'm able to do that using below code.
String[] permissions = { "offline_access", ...
0
votes
1answer
452 views
android : how we get online facebook friend list
I get my facebook friends list using facebook graph api.But i need online friend list.I searched a lot and read the answer of this same problem in this site.but i don't get any solution.please help me ...
0
votes
2answers
1k views
Facebook mutual_friend_count wrong?
I would like to know if anyone else has experienced this problem...
Facebook's count of mutual friends is off by 1. One too much. But not for all friends. I've tested this through my app where the ...
0
votes
1answer
254 views
Pointing a friend invitation to a page tab application?
I've made a facebook application and added it to a fan page. I've also added some code to send friend requests and it redirects fine after the dialog.
However, the notifications received by friends ...
0
votes
0answers
36 views
Send button: getting how many friends to whom the user sent the message?
Is it possible to determine the number of friends to whom the user sent the message? This is possible with the dialog requests, but it seems impossible with send.
...
1
vote
2answers
337 views
Allow user to select friend(s) from a dialog that lists all of the user's friends, and post on their wall using Javascript Facebook SDK
I would like to have a button in my Facebook app that will bring up a dialog that will allow the user to pick a friend's wall to post on. I was pretty sure this kind of dialog exists but so fare I ...
1
vote
2answers
2k views
Retrieve facebook friends hometown & location & birthday using Facebook SDK 3.0 for iOS
I am trying to get my friends hometown & location using FB SDK for iOS. But I can not retrieve friends location & hometown. Here is my code
- (IBAction)btnFBLoginTapped:(id)sender {
...
0
votes
1answer
203 views
ios ShareKit 2.0 method for getting user friends list from facebook?
Is there a method in ShareKit 2.0 ios sdk that returns the loged in user (facebook) friends?
Thanks
1
vote
1answer
255 views
Graph API: Sharing a friend's post on my wall
Using the Graph API, how do I share a friend's post on my own wall ?
I don't want to copy the original post's text and create a new post, becuase I need my friend to see that I shared his post.
The ...
1
vote
2answers
1k views
How to send friend request using Facebook dialogs on Android?
I want tot send a friend request using the Facebook Android SDK. I'm currently using this code (which I got from here):
Bundle parameters = new Bundle();
parameters.putString("APP_ID","USERNAME");
...
0
votes
1answer
503 views
How to filter a facebook friend list?
I use the graph api and would like to get a list of my friends who play games at facebook. Is this possible?
0
votes
0answers
422 views
How to program “Follow button” in facebook friends list
I have retrieved all my facebook friends using Facebook API in my android app.
Now what I want is to add a "Follow" button to each of the items in the friends list, so that
when an user clicks ...
1
vote
1answer
749 views
Multi friend selector and authentication dialog in PageTab app
i have created a page tab app for which i have set all the parameters under Auth Dialog in the app settings.
Now when i send a friend request through my app, and my friend clicks on the app request, ...
1
vote
1answer
326 views
Search and add Facebook friend using Phonegap
I'm trying to develop an iOS app which delivers this functionality: Using a person's contact information such as Name, Phone number and/or email address, search said person's Facebook profile and send ...
2
votes
0answers
648 views
Add Friend through Facebook Dialog - Android Facebook SDK
I am currently developing an Android app using the Facebook API. One module of my application consists in adding a friend (knowing the ID) and I would like to add a friend through the FB Dialog ...



