Facebook photo permissions fail to give access to photos
I have created a facebook app that if users of it accept should give the app and its access token to their photo albums. The website access the info from is authorized in the app.
(Yes the users im trying to get photos from have accepted and allowed the app)
However it doesn't work, it just returns nothing.
https://graph.facebook.com/10100188540131028/photos?access_token=(access_token_here)
{
"data": [
]
}
The app requests permis开发者_C百科sions for basic info and user_photos.
Am i missing something here? The only photos i can access are on public "pages". (which i can do without the app)
This error is usally due to incorrect token, double check it.
Thanks a lot it Works
Set user_photos permission for the 'scope' parameter while accessing token.
login page
https://www.facebook.com/dialog/oauth?client_id='123'&scope=read_stream,user_photos
精彩评论