每个域和 request_uri 一个 Facebook 应用
我正在 Facebook PHP SDK 之上开发一个 facebook 集成包装器。我的应用程序有点像产品商店的后端。当然,不同领域的许多后端。
由于访问令牌的初始请求需要 request_uri
参数(应与应用程序设置中的参数匹配),我是否应该为每个后端创建一个 Facebook 应用程序?
request_uri = http://mydomain.com/admin/social/facebook_thanks.php
(这与应用程序设置中的定义相同)。如果我添加另一个域(例如:“anotherdomain.com”),是否应该将 request_uri
更改为此?
request_uri = http://anotherdomain.com/admin/social/facebook_thanks.php
I'm developing a facebook-integration wrapper on top of Facebook PHP SDK. My app is kinda a backend for a product store. Many backends on different domains of course.
Since the initial request for access token require the request_uri
param (that should match that in the app setting) should i create one facebook app for each backend?
request_uri = http://mydomain.com/admin/social/facebook_thanks.php
(this is the same as defined in application setting). If i add another domain (say: "anotherdomain.com") should request_uri
be changed to this?
request_uri = http://anotherdomain.com/admin/social/facebook_thanks.php
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
无论您将 request_uri 更改为什么,Facebook 只会将用户重定向到您的应用程序设置中设置的域。
Facebook will only redirect users to the domain set in your application settings, no matter what you change the request_uri to.