Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
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.

I'm searching for a solution where I can get last 10 added friends for a user. Is it possible to do via. the FQL or Graph API or something that isn't possible?

share|improve this question

1 Answer

up vote 1 down vote accepted

The friends table/endpoint does not expose the time that you and another user started your friendship. So you can't get this information directly.

The best you can do is query the stream table for friend announcements.

SELECT description, description_tags, created_time FROM stream WHERE source_id = me() 
  AND type = 8 LIMIT 100

In my case, this query returned 3 results, even though I requested a LIMIT of 100.

share|improve this answer
It also returned 3 results in my case. Maybe that's the limit for this query? – Simon Thomsen Jan 23 at 20:05
The stream table has a lot of restrictions imposed on it, though I've never seen Facebook impose a limit of 3 items. In my case, using a limit of less than 100 returned nothing. – cpilko Jan 23 at 20:09
Allright, weird. But thanks for your answer! :-) – Simon Thomsen Jan 23 at 22:06

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.