Facebook 评论框重定向到一些奇怪的 URL

发布于 2024-12-09 06:06:26 字数 829 浏览 0 评论 0原文

好的,我已将评论框集成到我的网站中,这是我的测试网站的一个页面,您可以在底部看到评论框:

http://test.canp.co/programming/5/working-with-xaml

这没有问题。我已经发布了一条测试评论,并且可以在我的 Facebook 个人资料中看到它。当我从 Facebook 单击该页面的链接时,它附加了一些 ID 以在自己的系统中使用它,这是我从 Facebook 单击时的 URL:

http://test.canp.co/programming/5/working-with-xaml?fb_comment_id=fbc_10150349734853770_19900263_10150349735753770#f2af0d70b1e6c8

但是,当我单击此链接时,它会打开页面,滚动到评论的底部,当页面完全加载时,它会将我重定向到一些随机的无意义 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:

http://test.canp.co/programming/5/working-with-xaml?fb_comment_id=fbc_10150349734853770_19900263_10150349735753770#f2af0d70b1e6c8

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

℡寂寞咖啡 2024-12-16 06:06:26

在您网站上的 contentpage.js 中发现以下内容:

window.onload = function () {
    if (location.hash.length > 2) {
        location.replace("/" + location.hash.substring(2));
        return;
    }

请注意 facebook 所点击的 URL 末尾的 #f2af0d70b1e6c8,以及您被重定向到 /2af0d70b1e6c8 的事实.....

假设您正在获取 location.hash。 substring(2) 而不是 .substring(1),我假设您正在寻找 #!或 #/ 后跟用户想要的任何资源。您应该明确检查这些确切的格式而不是任何旧的哈希值。

found the following in contentpage.js on your site:

window.onload = function () {
    if (location.hash.length > 2) {
        location.replace("/" + location.hash.substring(2));
        return;
    }

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文