Facebook 画布 URL 重定向到 https
我有一个 Facebook 应用程序,同时包含画布 url 和安全画布 url。
当我的用户在页面选项卡中打开应用程序时,我的应用程序会读取带有 page id
的 signed_request
并为此特定 FB 页面提供内容。
当我的用户在 FB 中使用 https
冲浪注销并且下一个用户仅使用 http
冲浪登录时,我的应用程序会重定向到安全画布 URL,并且我的 < code>signed_request 参数丢失。如果没有 signed_request
参数,我无法确定我的应用应提供哪个页面。
当我清空浏览器缓存时,将使用我的应用程序的正确 http URL。
有没有办法始终在 FB 应用程序中使用 https
,或者阻止浏览器缓存 https
URL?
谢谢!
I have a Facebook app with both, canvas url and secure canvas url.
When my user opens the app within a page tab, my app reads the signed_request
with the page id
and delivers content for this specific FB page.
When my user uses https
surfing in FB logs out and the next user logs in with only http
surfing, my app gets redirected to the secure canvas url and my signed_request
parameter is lost. Without the signed_request
parameter I can't determine which page should be served by my app.
When I empty the browser cache, the right http URL of my app is used.
Is there a way to always use https
with FB apps, or prevent the browser from caching the https
URL?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您想从 http 重定向到 https 并且不丢失signed_request POST 参数,您可以在重定向之前手动捕获它并将其作为 GET 参数附加到 URL。见下文!
If you want to redirect from http to https and not lose the signed_request POST parameter, you can manually snag it before the redirect and append it to the URL as a GET parameter. See below!