打开图形对象调试器:302

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

有一个博客,最新的出版物没有正确共享,所有指定的元数据,尝试清理FB上的缓存从链接底部到结果,是什么阻止旧文章共享在此处输入链接描述

https://developers.facebook.com/tools/debug/sharing/?q=https%3A%2F%2Fjelvix.com%2Fblog%2Fhow-to-create-and-manage-a-successful-company-jelvix -故事

<meta property="og:type" content="website">
<meta property="og:title" content="How to Create and Manage a Successful Company: Jelvix Story">
<meta property="og:description" content="It may seem that starting a business is a tough process that nevertheless defines the company’s success. But this statement is far from the truth. Apart from the establishment itself, the rational management strategy, talented people, and a bit of luck ar">
<meta property="og:image" content="https://jelvix.com/images/blog/59dcede572308.jpg">
<meta property="og:url" content="https://jelvix.com/blog/how-to-create-and-manage-a-successful-company-jelvix-story">
facebook facebook-graph-api share-open-graph
1个回答
1
投票

如果查看调试器的输出,您将看到该站点正在重定向到无效的 URL:

Fetched URL: https://jelvix.com/blog/how-to-create-and-manage-a-successful-company-jelvix-story
Canonical URL: https://jelvix.com/404

爬虫将尝试从最终 URL

https://jelvix.com/404
中获取 og 标签。 您需要确保最终 URL 包含元标记,以便爬虫能够获取正确的值。

目前您的网站似乎正在将 Facebook 爬虫重定向到 /404。

curl -A 'facebookexternalhit/1.1' https://jelvix.com/blog/how-to-create-and-manage-a-successful-company-jelvix-story
Found. Redirecting to /404

您可以在此处阅读有关爬虫的更多信息:https://developers.facebook.com/docs/sharing/webmasters/crawler/

© www.soinside.com 2019 - 2024. All rights reserved.