使用 JS SDK 在 Facebook iFrame 应用程序中请求权限的正确方法是什么?
我目前正在使用这样的方法:
FB.ui({ method: 'oauth', perms: "user_photos" }, post_auth_callback);
OAuth 2.0 升级是否更改了请求权限的方式? 当前 Facebook 文档 未显示 perms 参数。看起来它已被替换为 scope 参数。然而,在测试中,范围参数被忽略,它只是请求标准访问。
I'm currently using a method like this:
FB.ui({ method: 'oauth', perms: "user_photos" }, post_auth_callback);
Has the OAuth 2.0 upgrade changed how permissions should be requested? The current Facebook documentation doesn't show a perms param. It looks like it has been replaced with a scope param. However, in testing, the scope param is ignored and it simply requests standard access.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试使用 FB.login() 方法并传递您提到的范围参数。另外,请确保在调用 FB.init() 时将 oauth 参数设置为 true,以便启用 OAuth 2.0。
Try using the FB.login() method and pass the scope parameter as you mentioned. Also, make sure you set the oauth parameter to true in your call to FB.init() so that OAuth 2.0 is enabled.