javascript - Find Facebook Friends using the same Parse app -


i need find users i'm facebook friends using app (i have android , web version). able done on android code:

https://parse.com/questions/how-can-i-find-parse-users-that-are-facebook-friends-with-the-current-user

but there's no mention of method javascript.

i've seen other posts fb api call this:

            fb.api('/me/friends?fields=installed', function(response) {                 var friends = response;                   console.log(friends);             });         } 

but reason returning 7 of friends (this case when i'm searching /me/friends). i'm not sure why it's not returning entire friendslist.

you don´t need fields=installed parameter, /me/friends return friends authorized app too. since v2.0 not return friends anymore, can read more in changelog.


Comments

Popular posts from this blog

c++ - Difference between pre and post decrement in recursive function argument -

php - Nothing but 'run(); ' when browsing to my local project, how do I fix this? -

php - How can I echo out this array? -