我有一个facebook连接的网站和一个用户必须登录facebook的Facebook页面标签。
我使用JS API并打开一个弹出窗口让用户连接。
它可以在任何地方工作,但是在7和8中。
而不是在弹出窗口打开它在新标签页中打开。用户可以登录,但保持打开状态并重定向到空白页面(https://www.facebook.com/dialog/permissions.request)。
登录成功,如果页面刷新,则用户已登录,但我需要它是一个弹出窗口,然后关闭并进行回调,这样我就可以像在其他浏览器中一样刷新页面。
任何人都知道如何解决这个问题,尝试了我能找到的一切,没有任何效果。
我的代码的一部分: $`
<div id="fb-root"></div>
<script type="text/javascript">
window.fbAsyncInit = function() {
FB.init({
appId : '<cfoutput>#appId#</cfoutput>',
cookie : true, // enable cookies to allow the server to access the session
oauth : true, // OAuth 2.0
status : true, // check login status
xfbml : true, // parse XFBML
channelUrl: 'http://192.168.1.96/gocoupons/OngletFacebook/channelUrl.cfm' //custom channel
});
};
(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() {
var e = document.createElement('script');
e.src = document.location.protocol + '//connect.facebook.net/en_US/all.js';
e.async = true;
document.getElementById('fb-root').appendChild(e);
}());*/
function login() {
//$.cookie('fbsr_<cfoutput>#appId#</cfoutput>',null);
FB.login(function(response) {
if (response.authResponse) {
window.location.reload();
}
}, {scope: 'email,user_checkins'});
}
function addToPage() {
FB.ui({method: 'pagetab'}, function(response){
$('#pageid').val(JSON.stringify(response));
$('#formAjoutPage').submit();
});
}
</script>
`