Facebook 应用程序的 App 域中可以有两个域吗?
我创建了一个用于开发的示例应用程序,并且创建了另一个示例应用程序,其具有除域之外的所有相同属性,因为所有 return_url 都应基于域。我在本地主机上使用一个版本,并在另一个测试域中使用其他版本。
因此,每当我将所有代码复制到测试域时,我都需要更改应用程序密钥、秘密和返回网址等。
我需要知道的是是否可以为单个应用程序添加两个或更多域,并且只更改返回 url 而不更改应用程序密钥、秘密等..?
更新:
抱歉,我想说的是不更改应用程序密钥、秘密。这是一个拼写错误,改变了问题的整个上下文。
I've created an sample application for development and I've created another sample application with all the same properties except domain, since all the return_urls should be based on the domain. I'm using One version at my localhost and using other version in another test domain.
So whenever i copy all the code to my test domain, i need to change the app key , secret and return url etc..
What i need to know is whether its possible to add two or more domains for a single app and only change the return url without changing the app key, secret etc..??
Update:
Sorry i intended to say without changing app key, secret.. That was a typo mistake that changed the whole context of the question.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您现在可以创建一个测试应用作为主应用的“子”应用。
测试应用程序有自己的 URL 和域,独立于父应用程序。
You can now create a Test App as a "child" app of your main app.
A test app has its own URL and Domain, independent of the parent app.
不,这是不可能的。这个问题已经在这里得到解答:允许 1 个 Facebook 应用程序使用多个域(如 Tumblr)
您需要为您创建的每个不同域设置一个新的 Facebook 应用程序。理想情况下,您应该为每个域都有一个配置文件,您可以在其中存储应用程序 ID/秘密,从而无需在每次部署时对其进行编辑。
No this is not possible. This has already been answered here: Allowing multiple domains for 1 Facebook App (like Tumblr)
You will need to set up a new facebook app for each distinct domain you create. Ideally you should have a configuration file for each domain in which you can store the app id/secret thereby preventing the need to edit it with each deploy.
以下步骤帮助我解决同样的问题。
Below steps help me to solve same problem.