9
App Domains: localhost
Website with Facebook login: http://localhost/auth

我转到http://localhost/auth/并在我的 Chrome 开发人员控制台中看到错误:Given URL is not allowed by the Application configuration.: One or more of the given URLs is not allowed by the App's settings. It must match the Website URL or Canvas URL, or the domain must be a subdomain of one of the App's domains.

我做了一个视图源来查看以下内容:

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Insert title here</title>
</head>
<body>
<div id="fb-root"></div>
<script>
  // Additional JS functions here
  window.fbAsyncInit = function() {
    FB.init({
      appId      : 'myappidremovedfromstackoverflowquestion', // App ID
      channelUrl : '//localhost/auth/channel.html', // 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

  };

  // 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>
<p>hello</p>
</body>
</html>

我去http://localhost/auth/channel.html查看源代码以查看单行:

<script src="//connect.facebook.net/en_US/all.js"></script>
4

1 回答 1

11

当您想将 Facebook 应用程序与本地环境连接时,您应该使用一些别名域。

尝试以下操作:

  1. 转到您的etc/hosts(或%systemroot%/system32/drivers/etc/hosts)文件并添加以下行:

    127.0.0.1 foo.local # alias domain

  2. App > Settings只需使用foo.local作为应用程序域即可转到并注册您的应用程序。

  3. 添加您的站点 URL(例如http://foo.local/project/

  4. 完毕。

于 2016 年 1 月 16 日编辑:

Facebook 已更改其 UI,请按照以下步骤使其正常工作。

  1. App > Settings > Basic (tab)
  2. 点击Add Platform,选择“网站”并输入您的别名域。
  3. 在部分中添加您的域App Domain
  4. 完毕。
于 2013-04-30T07:44:09.830 回答