-1

我在 tomcat 中部署了我的 Web 应用程序。应用程序使用 URL 加载正常:http:
//domain.com/portal-app/ (domain.com=10.124.23.33:8081 我无法在 url 中输入 ip:port。)我还在我的应用设置页面。但是我在加载主页时仍然在控制台上收到错误。我也没有收到 js 警报。当我单击“登录”按钮并输入用户名和密码时,它只会在 facebook 弹出窗口中抛出相同的消息。对此的任何帮助将不胜感激。

“应用程序配置不允许给定 URL。:一个或多个给定 URL >> 应用程序的设置不允许。它必须与网站 URL 或画布 URL 匹配,或者 >>> 域必须是该应用程序的域之一。”

我曾多次验证应用设置中的 URL。我在浏览器和 Facebook 中使用的应用程序 url 是相同的。相反,我只是复制粘贴了网址。这是代码

<html>
<body>
<div id="fb-root"></div>
<script>

//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 = "./js/all.js";
 ref.parentNode.insertBefore(js, ref);
}(document));

window.fbAsyncInit = function() {
  FB.init({
    appId      : '488834651123456',
        channelUrl : 'http://domain/portal-app/channel.html',
    status     : true,
    cookie     : true,
    xfbml      : true
  });

  FB.getLoginStatus(function(response) {
        alert(response.status);
        if (response.status === 'connected') {
          alert("hi");
        } else if (response.status === 'not_authorized') {
          FB.login(function(response) {
                if (response.authResponse) {
                    alert("hi");
                } else {
                    // The person cancelled the login dialog
                }
            }, {scope: 'user_about_me,user_birthday,user_groups,user_hometown,user_interests,user_likes,user_location,read_stream'});
        }else {             
              FB.login(function(response) {
                    if (response.authResponse) {
                        alert("hi");
                    } else {
                        // The person cancelled the login dialog
                    }
                }, {scope: 'user_about_me,user_birthday,user_groups,user_hometown,user_interests,user_likes,user_location,read_stream'});                 
        }           
      });
};

</script>
    <fb:login-button show-faces="true" width="200" max-rows="1"></fb:login-button>
</body>
</html>
4

1 回答 1

0

看起来channelUrl缺少.comand 应该http://domain.com/portal-app/channel.html在您的 init 函数中。

于 2013-10-05T00:10:57.597 回答