2

ユーザーがFacebookにログインしているかどうか(および他のページにリダイレクトしているかどうか)を確認しようとしていますが、このためのポップアップを開くことができません:

これは機能します:ただし、ユーザーがFacebookにログインしていない場合はポップアップが開きます

FB.login(function(response) {
    if(response.status == 'connected')
              /*Redirect here*/
});

これは私の別のウェブで機能していますが、ここでは機能していません

window.fbAsyncInit = function() {
                FB.init({
                  appId      : myAppid, // App ID 
                  status     : true, // check login status
                  cookie     : true, // enable cookies to allow the server to access the session
                  xfbml      : true  // parse XFBML
                });
                FB.Event.subscribe('auth.login', function() {
                      /* REDIRECT 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/es_ES/all.js";
                 ref.parentNode.insertBefore(js, ref);
               }(document));

ここに何か手がかりはありますか?

4

1 に答える 1

6

必要な情報を取得するために使用できますFB.getLoginStatus

呼び出される現在のブラウザセッションで初めてFB.getLoginStatus、またはJS SDKがで初期化されるとstatus: true、応答オブジェクトはSDKによってキャッシュされます。の後続の呼び出しはFB.getLoginStatus、このキャッシュされた応答からデータを返します。

ドキュメントからの例:

FB.getLoginStatus(function(response) {
  if (response.status === 'connected') {
    // the user is logged in and has authenticated your
    // app, and response.authResponse supplies
    // the user's ID, a valid access token, a signed
    // request, and the time the access token 
    // and signed request each expire
    var uid = response.authResponse.userID;
    var accessToken = response.authResponse.accessToken;
  } else if (response.status === 'not_authorized') {
    // the user is logged in to Facebook, 
    // but has not authenticated your app
  } else {
    // the user isn't logged in to Facebook.
  }
});
于 2012-05-22T08:43:22.773 に答える