Facebook 评论框重定向到一些奇怪的 URL
好的,我已将评论框集成到我的网站中,这是我的测试网站的一个页面,您可以在底部看到评论框:
http://test.canp.co/programming/5/working-with-xaml
这没有问题。我已经发布了一条测试评论,并且可以在我的 Facebook 个人资料中看到它。当我从 Facebook 单击该页面的链接时,它附加了一些 ID 以在自己的系统中使用它,这是我从 Facebook 单击时的 URL:
但是,当我单击此链接时,它会打开页面,滚动到评论的底部,当页面完全加载时,它会将我重定向到一些随机的无意义 URL,例如 http://test.canp.co/2af0d70b1e6c8
。该随机部分每次都会发生变化,显然,我收到了 404 错误。
可能是什么原因造成的? Facebook 评论框本身存在错误,还是我做错了什么?我应该做什么?我想要我的网站上的评论框。
Ok, I've integrated the comments box into my website, and here's is a page from my test site, where you can see the comments box on the bottom:
http://test.canp.co/programming/5/working-with-xaml
There's no problem with this. I've posted a test comment, and I can see it in my Facebook profile. When I click the link to the page from Facebook, it has appended some IDs to use it within its own system, here's the URL when I click from Facebook:
However, when I click this link, it opens the page, scrolls to the bottom to the comment, and when the page loads fully, it redirects me to some random nonsense URL, such as http://test.canp.co/2af0d70b1e6c8
. That random part changes every time, and, obviously, I'm getting a 404 error.
What could be causing this? A bug within the Facebook comments box itself, or did I do somwething wrong? What should I be doing? I want the comments box in my site.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在您网站上的 contentpage.js 中发现以下内容:
请注意 facebook 所点击的 URL 末尾的 #f2af0d70b1e6c8,以及您被重定向到 /2af0d70b1e6c8 的事实.....
假设您正在获取 location.hash。 substring(2) 而不是 .substring(1),我假设您正在寻找 #!或 #/ 后跟用户想要的任何资源。您应该明确检查这些确切的格式而不是任何旧的哈希值。
found the following in contentpage.js on your site:
Notice the #f2af0d70b1e6c8 at the end of the URL that facebook hits, and the fact that you get redirected to /2af0d70b1e6c8.....
Given that you're taking location.hash.substring(2) instead of .substring(1), I assume you're looking for #! or #/ followed by whatever resource the user wants. You should explicitly check for those exact formats instead of any old hash.