Facebook Javascript SDK在接受应用程序后获取空白页面

时间:2013-02-10 02:16:47

标签: facebook-javascript-sdk facebook-login

我在尝试使用Javascript SDK进行简单的登录流程时遇到错误。我一定做错了什么,但无法搞清楚。我只是在他们接受应用程序后尝试重定向用户。

以下是发生的事情: 用户单击登录按钮,将显示应用程序对话框(具有正确的权限)。他们批准该应用,然后弹出窗口挂在包含此网址的空白页面上:https://www.facebook.com/dialog/permissions.request

然而,该应用程序已获批准,如果我单击对话框并再次单击登录按钮,我将被正确重定向,并且已安装该应用程序。

这是我的代码:

<html>
<head>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script src="js/functions.js" type="text/javascript">
</script>
<link type="text/css" href="style/style.css" rel="stylesheet" />
<link href='http://fonts.googleapis.com/css?family=Oranienbaum' rel='stylesheet' type='text/css'>
</head>
<body>

<script>
// Additional JS functions here
window.fbAsyncInit = function() {
    FB.init({
      appId      : 'my_app_id', // App ID
       // Channel File
      status     : true, // check login status
      cookie     : true, // enable cookies to allow the server to access the session
      xfbml      : true  // parse XFBML
    });

    // Additional init code here
    FB.getLoginStatus(function(response) {
    if (response.status === 'connected') {
        $('.submit_button').attr("href","gameurll").removeAttr("onClick");
    }
    });
  };

  // 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));

  // Facebook Login Function

function login() {
    FB.login(function(response) {
        if (response.authResponse) {
            // connected
            window.location = "gameurl";
        } else {
            // cancelled
        }
    }, {scope:"publish_actions,email,user_relationship_details"});
}

</script>

<a class="submit_button" href="" onclick="login();" >Login</a>

</body>
</html>

提前感谢您的帮助

0 个答案:

没有答案