Facebook app user list display

I am working on a facebook application and I would like to show the user his friends who are already users of the application.

I was able to get the user IDs of facebook users. Now I'm trying to find out if there is a facebook api resource that I can use to render images and usernames by simply passing them the identifiers.

early.

+3
source share
5 answers

You should try using FQL and the user table. http://developers.facebook.com/docs/reference/fql/user/

is_app_user, . uid, , .

fql, , , , , $user :

SELECT uid FROM user WHERE is_app_user = 1 AND uid IN (SELECT uid2 FROM friend WHERE uid1 = $user)
+2
0

, FQL . , FBML javascript- Facebook, FBML . fb: name fb: profile-pic.

fb: multi-friend-selector, , .

0

I think you are looking for his Facebook facepile , it is a social plugin. Just give app_id and it shows how your friends use it.

0
source

Source: https://habr.com/ru/post/1781596/


All Articles