I'm getting friends ids and names using
mAsyncRunner.request("me/friends", new FriendRequestListener());
but I also need the friends profile pictures. I could loop over the friends to get them, but this is many requests.
Is there any way to get friends ids, names AND pictures in one request?
Thanks