I have all the list of friends which I get using
[facebook requestWithGraphPath:@"me/friends" andDelegate:self];.
Using this I get all the ids of my friends. I get all my photos too by using
[facebook requestWithGraphPath:@"me/photos" andDelegate:self];.
But what I should I use as the argument in requestWithGraphPath: if I want the photos related to any one of my friends?
Simple trick to fetch your friends photo.
[facebook requestWithGraphPath:@"FriendID/albums" andDelegate:self];e.g
which returns album id along with some information.