我的 facebook Javascript SDK 有问题....它正在工作,但是。当您单击登录时...会有弹出显示显示您在 facebook 上登录(没关系)..问题是,当您登录弹出登录时,窗口不要关闭它那里的股票...第二个问题是,父页面也被重定向到 facebook 登录页面.. 我该如何解决这个问题?顺便说一句,我在轨道上使用红宝石。
这是我的 facebook.js:
window.fbAsyncInit = function() {
FB.init({
appId : "XXXXXXXXXXXXXXXX", // App ID
status : true, // check login status
cookie : true, // enable cookies to allow the server to access the session
xfbml : true // parse XFBML
});
$(function() {
$("#signin").click(function() {
FB.login(function(response, event) {
if (response.authResponse) {
$.cookie("user_id", response.authResponse.userID);
$.cookie("access_token", response.authResponse.accessToken);
window.location = "#{auth_facebook_callback_url}";
} else {
}
}, {scope: 'email,read_stream,publish_stream,offline_access'});
});
});
$(function() {
$("#signout").click(function(){
FB.getLoginStatus(function(response){
if(response.authResponse){
FB.logout();
}
});
});
});
};
// 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));
提前致谢 :)