Reputation: 31
I am using Swift and I am trying to get my friends list with a graphrequest but unfortunately only "/me/taggable_friends" has worked, and that does not display all of your friends. It seems like there isn't a way to show all of your friends (which makes absolutely no sense to me, I thought that would be a big one) and if I can get it to show all the friends, I want to be able to access their profile picture.
Basically I am trying to make a collection view that is a list of my friends and their pictures.
Upvotes: 0
Views: 284
Reputation: 6251
You should use /me/friends/
. Starting from v2.0 of the API, it only returns friends who are using your app.
Upvotes: 1