Reputation: 4563
I want to make sure about can we make custom multi friend selector of facebook in unity ?
I got the multi friend selector link . but there is no reference code regarding unity.
So if anyone has tried that feature then help me and share here.
Thanks..
Upvotes: 0
Views: 479
Reputation: 48
Will you can get friends list using one of my plugins (Android Native or Mobile Social), you will also find friend list implementation example inside, here is example scene screenshot:
https://i.sstatic.net/68y5R.jpg
And in case you do not want to use paid solutions you can get free Unity FB SDK for here.
https:// developers.facebook.com/docs/unity/downloads?locale=en_GB
And use
FB.API("/me?fields=friends.limit(10).fields(first_name,id,last_name,name,link,locale,location)", Facebook.HttpMethod.GET, FriendsDataCallBack);
To get your friends data. More info:
https:// developers.facebook.com/docs/graph-api/reference/v2.2/user/friends?locale=en_GB
P.S. Sorry for url formats. I ma new here, and can not add more than 2 links to my replay
Upvotes: 1