How can I count the total friends of a Facebook user by uid?
|
|
|
There is a
Just replace |
|||
|
|
|
@Scott This very much works, I didn't expect it to :) https://graph.facebook.com/fql?q=SELECT friend_count FROM user WHERE uid={any id} I tried with a random user id who is not a friend in Graph API. However for few random uids it returned null, I am guessing they were pages. |
|||
|
|
|
Since If you want to get more information, like names, along with count you can use an inner select to get the friend's extended info:
Here is a related SO question: References for Friend table:
|
||||
|
|
|
Heres my solution... works great!
Replace XXXXXXX152466 with the facebook profile id# Using Facebook PHP SDK along with Graph API! |
||||
|