Facebook 评论 URL 无法访问 - URL 关注失败

问题描述 投票:0回答:1

我的 Facebook 评论隐藏在电子邮件输入页面后面。输入电子邮件后,页面将显示评论框。您可以在这里看到它们: -- 一旦您进入促销活动,评论就会显示。我所有页面上不断出现的错误是:

Errors That Must Be Fixed:

URL Follow Failed: There was an error in fetching the object at URL 'http://anyluckyday.com/promo/21/lookmatic-eyeglasses', or one of the the URLs specified via a redirect or the 'og:url' property including one of http://anyluckday.com/promo/21/lookmatic eyeglasses.

Circular Redirect: Circular redirect path detected (see Redirect Path section for details).

Error Scraping Redirect: Bad Response Code (redirect)

这是我用于元属性的内容,用于重定向到正确的网址并提取信息:

<meta property="og:type" content="webpage"/>
<meta property="og:url" content="http://anyluckday.com<?=$_SERVER['REQUEST_URI']?>"/>
<meta property="og:image" content="http://anyluckyday.com/uploads/<?=$img[3]['path']?>"/>
<meta property="og:site_name" content="AnyLuckyDay - <?=$data['title']?>"/>
<meta property="og:description" content="AnyLuckyDay - <?=$data['title']?>"/>

知道为什么我会收到这些错误吗?

facebook url comments
1个回答
0
投票

我去了linter(https://developers.facebook.com/tools/debug/og/object?q=http%3A%2F%2Fanyluckyday.com%2Fpromo%2F21%2Flookmatic-eyeglasses),有一些错误必须修复。 从您的网站使用的导致循环引用的重定向开始。 我认为 Facebook 想要得到 200 响应,而不是您当前发送的重定向。

URL Follow Failed:  There was an error in fetching the object at URL 'http://anyluckyday.com/promo/21/lookmatic-eyeglasses', or one of the the URLs specified via a redirect or the 'og:url' property including one of http://anyluckday.com/promo/21/lookmatic-eyeglasses.
Circular Redirect:  Circular redirect path detected (see Redirect Path section for details).
Error Scraping Redirect:    Bad Response Code (redirect)
© www.soinside.com 2019 - 2024. All rights reserved.