1

我正在使用谷歌应用引擎和谷歌网络工具构建一个网络应用程序。我曾尝试使用 html 实现 Facebook 登录页面。所以我有自己的登录和注册系统,还有 Facebook 登录系统。问题是,一旦一个人通过 Facebook 登录,它只会停留在主登录页面,当我希望它转到主页面时。我必须放一些代码直接到主页,但我不知道在哪里放 html。

  <div id="fb-root"></div>
  <script>
    window.fbAsyncInit = function() {
      FB.init({
        appId      : 'This is where My App ID was...', // App ID
        channelUrl : '//www.Icannnotshowyou.com/', // Channel File
        status     : true, // check login status
        cookie     : true, // enable cookies to allow the server to access the session
        xfbml      : true  // parse XFBML
      });

      //put something 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/en_US/all.js";
       ref.parentNode.insertBefore(js, ref);
     }(document));
  </script>
<div class="fb-login-button">Login with Facebook</div>
</body>
</center>
4

1 回答 1

0

我认为您必须在创建 facebook 应用程序时设置了回调 url,该应用程序应该将您重定向回该 url,在我的情况下,该 url 是一个对图形对象进行所有处理的 servlet,然后我返回一个字符串作为响应,该字符串已处理通过嵌入在我的 html 头标签中的 js 函数。并进一步使用此字符串,我将调用重定向到其他页面。

于 2012-12-27T10:28:26.343 回答