friends

Largest possible group of friends in common?

I'm trying to come up with the largest possible group of friends that would theoretically get along with each other, i.e., each person in the group should know at least 50% of the other people in the group. I'm trying to come up with an algorithm for this that doesn't take ridiculously long; Facebook's API/cross-server talk is pretty sl...

Get a list of Friends of a Friend on facebook

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 who I am also friends with. However the Friends Wheel application can do it as you ...

Getting User Feed From Facebook Without User Login

hi, we are working on a web site that getting users' friends and users' feeds. Users can register via facebook connect. but we want to take user's feeds at any time. is that possible ? can we take feed information from facebook without user login. ...

iphone friends location app

What kind of api does SDK provide if we are to develop an app which keeps tracks of friends location? Update: CoreLocation gets the device location with the app running. But how to get the friends location data if you have their phone number. Does anyone have idea to get the location data of friends using iphone sdk ...

facebook friends-of-friends

Hi All, Quick question. How can I get the Facebook ids of the current logged in user’s second degree friends or friends-of-friends? Sample sites that do the same behavior are the ff: vark.com thread.com ...

Facebook Open Invite Friends Interface

Hello! How can I open the Multi Friend selector from a Flex Application inside a Facebook IFrame please? The interface I am looking for is this: ...

Facebook app friends users posts don't appear on my news feed

Hello, I built a Facebook app which allows users to post some news to their news feed from my website. I use Facebook Connect and the Facebook JS library. When a friend of mine (Facebook friend) posts something to his news feed from my website using my Facebook app, I don't see it in my news feed. His other friends see it. Is it becaus...

Website invite system that works

Hi all, I created a social network and i wanna know if there is any free invite systems i can add on my website that works. It can be a widget etc as long as it works. I have been using openinviter but this has siezed working. Is there any out there that works for you. i dnt use wordpress or joomla. ...

iPhone facebook connect emails returning null

Hi, I am using the newest newest Facebook connect API for the iPhone. I am trying to get the email addresses from friends of the my app's user. I am only considering those friends of the user that are users of the corresponding Facebook app, and that have given permission to the Facebook app to use their email address. I am performing a...

Using the Facebook GRAPH API, can i find out how long two users have been friends?

I want to know the date that two people became friends. assuming i can get any kind of permissions from the user, is there a way to find this out. I want to be able to calculate how long people have been friends. perhaps friends since a certain time. etc. I cant figure out if this is possible. ...

template class + operators + friends = unresolved externals

I have a class called fraction, and I'm declaring some operators as friends. I declared the friend operators beforehand, as http://www.parashift.com/c++-faq-lite/templates.html#faq-35.16 told me to do, but it only fixed +, -, *, and /. << and >> still don't work. template <class T> class Fraction; template <class T> Fraction<T> operator...