Facebook 照片权限无法授予对照片的访问权限
我创建了一个 Facebook 应用程序,如果它的用户接受,应该向该应用程序及其相册提供访问令牌。网站访问信息已在应用程序中获得授权。
(是的,我尝试从中获取照片的用户已接受并允许该应用程序)
但是它不起作用,它只是返回任何内容。
https://graph.facebook.com/10100188540131028/photos?access_token=(access_token_here)
{
"data": [
]
}
该应用程序请求基本信息和用户照片的权限。
我在这里错过了什么吗?我唯一可以访问的照片位于公共“页面”上。 (我可以在没有应用程序的情况下做到这一点)
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 permissions 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)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
此错误通常是由于令牌不正确造成的,请仔细检查。
This error is usally due to incorrect token, double check it.
非常感谢,它可以
在访问令牌时为“范围”参数设置 user_photos 权限。
登录页面
Thanks a lot it Works
Set user_photos permission for the 'scope' parameter while accessing token.
login page