gpt4 book ai didi

facebook - 我在 localhost Facebook 应用程序开发中做错了什么?

转载 作者:行者123 更新时间:2023-11-30 05:18:27 29 4
gpt4 key购买 nike

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

我转到 http://localhost/auth/ 并在我的 Chrome 开发人员控制台中看到错误:应用程序配置不允许给定 URL。:一个或多个应用程序的设置不允许给定的 URL。它必须与网站 URL 或 Canvas URL 匹配,或者域必须是应用域之一的子域。

我查看源代码以查看以下内容:

<!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>

最佳答案

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

尝试以下操作:

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

    127.0.0.1 foo.local #别名域

  2. 转到 App > Settings 并通过简单地使用 foo.local 作为应用程序域来注册您的应用程序。

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

  4. 完成。

编辑于 16.01.2016:

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

  1. 转到 App > Settings > Basic(选项卡)
  2. 点击添加平台,选择“网站”并输入您的别名域。
  3. App Domain 部分添加您的域。
  4. 完成。

关于facebook - 我在 localhost Facebook 应用程序开发中做错了什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16294630/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com