使用 JS SDK 在 Facebook iFrame 应用程序中请求权限的正确方法是什么?

发布于 2024-12-05 04:33:00 字数 352 浏览 1 评论 0原文

我目前正在使用这样的方法:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

ぃ弥猫深巷。 2024-12-12 04:33:00

尝试使用 FB.login() 方法并传递您提到的范围参数。另外,请确保在调用 FB.init() 时将 oauth 参数设置为 true,以便启用 OAuth 2.0。

FB.login(function(response) {
        if(response.authResponse) {
            console.log("photo permissions granted")'
        } else {
            console.log("photo permissions denied")'
        }
    }, {
        scope : 'user_photos,friends_photos'
    });

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.

FB.login(function(response) {
        if(response.authResponse) {
            console.log("photo permissions granted")'
        } else {
            console.log("photo permissions denied")'
        }
    }, {
        scope : 'user_photos,friends_photos'
    });
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文