FB_Graph_Response = [FB_Graph doGraphGet:@"me/friends" withGetVars:nil];
// NSLog(@"%@",[FB_Graph_Response.htmlResponse JSONValue]);
arrFriendsList = [[[FB_Graph_Response.htmlResponse JSONValue]objectForKey:@"data"]retain];
I have accessed the friends list in my app by using fb graph api(above request),
but i am not able to get friend’s profile images. how to get it?
Get the id (or the nick) of the user, and get the picture from https://graph.facebook.com/idOrNick/picture
This works without any kind of auth.
Small sample: