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:
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
Post a Comment