Reputation: 5628
Please see this previous discussion for building the context. How to retrieve Facebook friendlist and save it to parse?. As that guy pointed out it's not possible any longer to retrieve friendlists, I tried retrieving it by using the older sdk. That sdk is working fine with my other app. But i still can't retrieve fb friendlist. I tried this method too, other than the two mentioned in the above stated question:
[FBRequestConnection startForMyFriendsWithCompletionHandler:
^(FBRequestConnection *connection, id<FBGraphUser> friends, NSError *error)
{}];
But it's still no bueno. Can someone please tell me what's wrong with it? How can i retrieve the fb friendlist and store it to parse?
Upvotes: 0
Views: 86
Reputation: 74014
Careful with "friendlist" and "friends", those are two different things. Although, i am pretty sure you don´t want to get the "friendlists", because those are just the lists without the friends in there.
Anyway, using an old SDK does not mean you can get all friends, the only way to still get all friends is by using an App created before end of April 2014 (with any SDK). And that solution only works until end of April 2015, of course.
Upvotes: 2