|
I want to fetch 'birthdays' of users, and their friends on my website, from their facebook profiles (with their facebook credentials supplied).
Is their a feature in Facebook API/Connect that I can use to fetch these details from facebook as possible ...
Started by Mohit Nanda on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Facebook( $apikey, $secret ); $uid = $facebook->require_login(); $friends = $facebook->api_client-> is a small snippet of the code:
$friends = $facebook->api_client->friends_get(); $uidsYou....
|
|
Hi,
I've recently stared looking into the Facebook API and am trying to workout how to retrieve the list of friends of another user (in this case the user is someone I'm friends with).
So far I've only worked out how to find out the friends of a person...
Answer Snippets (Read the full thread at stackoverflow):
It looks like Friends.get is what you want..
Http://wiki.developers.facebook.com/index.php/Friends.get
See the uid optional parameter.
|
|
My app needs to invite friends from facebook conenct is this possibl e? Any examples ? Please help !
Started by Prasad-PHP Champ on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
You might....
The downside is the user would have to log in then .
If you don't see it in the API, then it's probably not supported:
http://wiki.developers.facebook.com/index.php/API
You could load the page, http://www.facebook.com/invite.php in a UIWebView .
|
Ask your Facebook Friends
|
Hey
i want to get from facebook the events that my friends are going to them. for example
eventId1 (friend1,friend2,friend3) eventId2 (friend10,friend55); and so on...
how can i accomplish it ?
thank for replays.
Started by Yan on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Here is how you can get all the events your friends uid2 FROM friend WHERE uid1=''$user_id''....
Then, parse that list of friends and gather the eventsOne way do get events is using the FQL.
Of events that friend is attending.
|
|
What Facebook API call should I make in order to find new friends by First and Last name?
The functionality that I'm trying to achieve is similar to Find Friends page, but I have to do that programmatically.
Many thanks in advance.
Sincerely,
Roman
Started by Roman Kagan on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
I think the query you want would look something like this:
SELECT uid FROM user WHERE strpos... .
Uid1 = 123456 )
where the uid1 value is the Facebook ID of the person who's friends you're looking to query Facebook directly using FQL.
|
|
I want to design my a friends list page that is almost identical to Facebook's, how there is a thumbmail image with some text beside it (that is aligned with the top of the graphic), and then surrounded by a gentle box.
Can someone provide some sample...
Started by alamodey on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
But this breakdown might also be useful: How to Style an Application Like Facebook ..
|
|
I am looking for a way to connect to facebook by allowing the user to enter in their username and password and have our app connect to their account and get their contacts so that they can invite them to join their group on our site. I have written a ...
Started by Jim Zimmerman on
, 8 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
Python/Django example from Facebook developers wiki :
Page:
def invite_friends(request): #HTML escape; <fb:multi-friend-selector max="20" actiontext="Here are your friends who aren't using Online GamesSeems like Facebook....
|
|
Hi there, I've gotten the FB JS client library to work on my iframe-based application (cool stuff, I must say), but now I'd like to retrieve a list of friends from Facebook, in order to populate an AutoComplete field (similar to the friend-selector), ...
Started by btelles on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Use JavaScript to parse FROM friend WHERE uid1....
Is the iFrame piece your talking about the Facebook-provided 'share with friends' facility? If so JavaScript calls to the Friends API to get an XML list of friends back.
|
|
My JavaScript application uses Facebook Connect to display the profile pictures of a user's friends.
This worked fine until a recent update on Facebook's end created a bug in Safari.
Essentially, everything works fine unless a user's friend has an apostrophe...
Started by Bryan Woods on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Replace(/\>/g, ">") + '" facebook-logo="true">' + '</fb.
Replace(/\</g, "<").
Would work?
Try something like
markup;").
I]) + '" facebook-logo="true">' + ' </fb:profile-pic>'; ...
|
|
I'm trying to get a list of user's friends using fb connect for the iphone.
I've tried both of the following FQL Queries, but they don't seem to be returning anything.
which one is correct if any ?
NSString* fql = [NSString stringWithFormat:@"select flid...
Started by dizy on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Uid IN ( SELECT uid2 FROM friend WHERE uid1=%lld )",[self fbSession].uid];
Can anyone tell me how.
|