how to get a list of all user friends (not only who use the app)?

前端 未结 1 908
[愿得一人]
[愿得一人] 2021-01-29 08:08

in android application : i want to get a list of all friends of the person who login to my app , not only those who use the app ? i use the following :

private v         


        
相关标签:
1条回答
  • 2021-01-29 08:56

    It is not possible to get ALL friends with v2.0+, only with Apps created before end of April 2014 by using v1.0 of the Graph API. And it will only work until end of April 2015. See changelog for more information about the versions: https://developers.facebook.com/docs/apps/changelog

    There is also invitable_friends and taggable_friends though, but they are reserved for Apps on facebook.com:

    • https://developers.facebook.com/docs/graph-api/reference/v2.1/user/invitable_friends
    • https://developers.facebook.com/docs/graph-api/reference/v2.1/user/taggable_friends

    This may also be interesting for inviting friends: https://developers.facebook.com/docs/games/requests/v2.1

    0 讨论(0)
提交回复
热议问题