Facebook PHP SDK在不同子目录路径下刷新循环
我已经到处搜索(谷歌索引平行宇宙的结果也对吗?)来解决 Facebook PHP SDK 刷新循环的问题。
我将其范围缩小到以下场景。
我的设置:
- 主站点(自己的cms) - http://localhost/
- wordpress 博客 - http://localhost/blog
我有一个在上面#1和#2之间共享的标头(在wordpress上,我创建了一个主题来包含函数并共享# 1 的 $db 对象与 wordpress)。
因此,当我在 #1 下登录时,#1 路径下的站点(如 localhost/?mod=some_module )工作正常。
但是如果我将浏览器指向#2 (localhost/blog/
),那么我会得到一个刷新循环。
有什么想法吗?
提前致谢..
I have searched everywhere (google indexes parallel universe's results too right?) to problem with Facebook PHP SDK refresh loop.
I have narrowed it down to the following scenarios.
My setup:
- main site (own cms) - http://localhost/
- wordpress blog - http://localhost/blog
I have a header that is shared across both #1 and #2 above (on wordpress, i created a theme to include functions and share #1's $db object with wordpress).
So, when i login under #1, sites under #1 paths, like localhost/?mod=some_module
work fine.
But if i point my browser to #2 (localhost/blog/
) then i get a refresh loop.
Any idea?
Thanks in advance..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
嗯,实际上我在代码中做了一些错误的事情。但最终,我需要为新的 JS API 和新的 PHP SDK 版本 3.1.1 设置 oauth: true 。
完整的描述可以在这里找到:
https://developers.facebook.com/blog/post/534/
Hmm, actually i kinda do few things wrong in my code. But ultimately, i need to set oauth: true for new JS API and new PHP SDK version 3.1.1.
Full description can be found here:
https://developers.facebook.com/blog/post/534/