- I requested an Access Token with user_photos and friend_photos permissions
- I did
graph.facebook.com/[friend's id]/albums?access_token=[access token] - For some of my friends, I got results and for other friends, I get an empty
JSONdataset { "data": [ ] }
If I do the same thing using the Access Token Facebook generates for me for use with their examples on the Core Concepts > Graph API page at developers.facebook.com/docs/reference/api/.
I am able to access all my friend's albums without any problems. So obviously the token and the permission is the problem.
So what am I doing wrong? The documentation seems to indicate that friends_photos should be a sufficient permission.

