我试图在使用 Facebook 建议的 Javascript SDK 登录 Facebook 时请求额外的权限。我正在使用范围参数将附加请求作为 FB.login() 的一部分。我的 chrome 浏览器阻止了弹出窗口。当我将包含 FB.login 和范围参数的页面加载到浏览器中时,Chrome 会阻止自动弹出窗口。然后,当我单击 html 按钮执行 facebook 登录和授权请求时,fb 弹出窗口显示的唯一权限是基本信息的权限。但是,如果我允许弹出窗口,那么当我加载页面时,会自动显示一个 facebook 授权弹出窗口,而无需单击按钮来启动 fb 登录。当此自动弹出窗口显示时,它现在显示我在范围参数中包含的其他权限。
下面是我的代码:
<!DOCTYPE html>
<html>
<head>
<div id="fb-root"></div>
<script>
// Additional JS functions here
window.fbAsyncInit = function() {
FB.init({
appId : 'MY_APP_ID', // App ID
channelUrl : 'channel.html', // Channel File
status : true, // check login status
cookie : true, // enable cookies to allow the server to access the session
xfbml : true // parse XFBML
});
// Additional init code here
FB.getLoginStatus(function(response) {
if (response.status === 'connected') {
// connected
} else if (response.status === 'not_authorized') {
// not_authorized
login();
} else {
// not_logged_in
login();
}
});
};
function login() {
FB.login(
function(response) {
if (response.authResponse) {
// connected
} else {
// cancelled
}
},
{scope: 'email, user_birthday'}
);
}
// Load the SDK Asynchronously
(function(d){
var js, id = 'facebook-jssdk', ref = d.getElementsByTagName('script')[0];
if (d.getElementById(id)) {return;}
js = d.createElement('script'); js.id = id; js.async = true;
js.src = "//connect.facebook.net/en_US/all.js";
ref.parentNode.insertBefore(js, ref);
}(document));
</script>
</head>
<body>
<button type="button" onclick="FB.login()">login</button>
</body>
</html>