我正在使用 Facebook JavaScript SDK 为我的网站实现登录。我已经让它在 Safari 和 Firefox 上运行,但不能在 Chrome 上运行。
调用 FB.login 方法后,我可以从 Facebook 检索访问令牌,但它不像在 Firefox 和 Safari 中那样在 cookie 中设置访问令牌和用户 ID。目前,我正在手动将访问令牌和用户 ID 写入 cookie,以便登录流程正常工作,但它仍然让我很吃惊,因为访问令牌不是单独用 Chrome 编写的。
有没有人遇到过这个并且知道手头的修复?非常感激。
下面是我的初始化和登录逻辑代码:
window.fbAsyncInit = function() {
FB.init({
appId : "#{AppConfig.facebook['app_id']}", // App ID
status : true, // check login status
cookie : true, // enable cookies to allow the server to access the session
xfbml : true // parse XFBML
});
// Additional initialization code here
};
// 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));
$(function() {
$(".fb-login-button").click(function() {
FB.login(function(response) {
if (response.authResponse) {
console.log("Welcome! Fetching your information...");
$.cookie("user_id", response.authResponse.userID);
$.cookie("access_token", response.authResponse.accessToken);
window.location = "#{oauth_facebook_callback_url}";
} else {
console.log("User cancelled login or did not fully authorize.");
}
}, {scope: 'publish_stream,offline_access,email,user_events,create_event,user_location'});
});
});