0

こんにちは、非公式のfb Coldfusion SDKを使用しています。まだ CF7 を使用しているため、CFscript の使用から従来の cffunctions にすべて変換する必要がありました。すべてが機能しているように見えますが、サーバー側でログイン時に Cookie を検索しようとすると、なぜ見つからないのかわかりません。Chorme では問題ないようですが、FF、IE、Opera ではすべて同じ問題が発生します。

index.cfm には fb:login ボタンがあり、押すとログイン画面が表示されます。ログインに成功すると、index.cfm の更新により FacebookApp メソッドが実行されますが、サーバー側から読み取ると access_token に空白の値が返されます。これは、サーバー側で Cookie から情報を取得しようとしましたが、Cookie が作成されていないためです。access_token の値も出力しましたが、空白として返されます。約 1 秒後に F5 を押すと、出力に access_token の値が表示されます。同時に、js アラートを使用して access_token を getLoginStatus に表示すると、値を確認できます。

SDK の読み込みが遅く、channelURL パラメータを使用する古いブラウザのいくつかの場所を読みましたが、これは完了しましたが、それでも上記と同じ結果が得られます。

私にできることはありますか?js タイムアウトを追加して getLoginStatus を遅くしようとしたので、Cookie を読み取る時間がありましたが、喜びはありませんでした。助けてください。

ページのトップへ 私はこれを持っています

<!doctype html PUBLIC "-//W3C//Dtd html 4.0 Transitional//EN">
<html xmlns:og="http://ogp.me/ns#" xmlns:fb="http://www.facebook.com/2008/fbml">

ボディタグの後、私は次のものを持っています

    <div id="fb-root"></div>

            <script>
              window.fbAsyncInit = function() {
                 FB.init({
                  appId  : 'xxxxxxxxxxxxxxxx',
                  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: document.location.protocol + './/www.sitename.com/fbchannel.html' //custom channel
                });

                // whenever the user logs in or logs out, we refresh the page
                FB.Event.subscribe('auth.login', function(response) {
                   window.location.reload();
                   alert('login');
                });

                FB.Event.subscribe('auth.logout', function(response) {
                   window.location.reload();
                   //alert('logout');
                });

                FB.getLoginStatus(function(response) {
                  if (response.status == 'connected') {
                    // the user is logged in and connected to 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;

                    //alert('end');
                   // alert('login url called '+unescape(window.location.pathname));
                    // whenever the user logs in we refresh the page

                    //alert(accessToken);

                  } else if (response.status == 'not_authorized') {
                    // the user is logged in to Facebook, 
                    //but not connected to the app
                  } else {
                    // the user isn't even logged in to Facebook.
                  }
                 });

              };

              (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);
              }());
            </script>

上記のものの下のどこかにボタンがあります

<fb:login-button scope="publish_stream,email" autologoutlink="true">Connect with FB</fb:login-button>
4

1 に答える 1

0

問題を解決するためにこれに DAYS を費やした後、私はこれに出くわし、私の一日になりました。問題は解決しました! ありがとうchwk。

于 2011-12-28T01:35:08.373 に答える