私のウェブサイトは: http: //bit.ly/OF9NHS
ページの下半分にあるオプチンボックスで、Facebook Connectボタンをクリックしてログインすると、空白のウィンドウで「ハング」し、何もしません。
ユーザー情報をフォームに返すように続行するにはどうすればよいですか?
ここで検索しましたが、私の状況に対する解決策は見つかりませんでした。ありがとうございました :-)
これが私のコードです:
/////////////////////////////////////////////////////////////////////////////////////////////////////
/// facebook + optin box scripts
/////////////////////////////////////////////////////////////////////////////////////////////////////
window.fbAsyncInit = function() {
FB.init({
appId : '271302529636100', // App ID
status : true, // check login status
cookie : true, // enable cookies to allow the server to access the session
xfbml : true // parse XFBML
});
};
// 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));
// FB.init({
// appId:'271302529636100', cookie:true,
// status:true, xfbml:true
// });
function register_with_fb_222(){
FB.login(function(response) {
if (response.authResponse) {
FB.api('/me', register_user_fb_222);
} else {
alert('You need to Grant Permission to Register with Facebook.')
}
}, {scope:'email,user_about_me'});
}
function register_user_fb_222(user){
document.getElementById('name1').value=user.first_name;
document.getElementById('email1').value=user.email;
document.forms['mainForm1'].submit.click();
}