共享链接的标题显示为 url

发布于 2024-12-02 10:44:32 字数 222 浏览 2 评论 0原文

当我分享新的博文时,有时帖子的标题会正确显示,有时则仅显示为网址。这些帖子基于完全相同的模板,我发现有效标题和无效标题之间的代码没有差异。在浏览器窗口中查看时,所有帖子都会显示正确的标题,并且 facebook 调试器会找到所有帖子的标题。但是,我确实收到了有关缺少所需属性的警告,og:title 是必需的。调试器中的类型、图像和 url 相同

,但共享链接时标题显示正常。 谁能帮忙解决这个问题吗? 谢谢..

When I share new blogposts, sometimes the title of the post displays properly, and sometimes it is only displayed as an url. The posts are based on the exact same template, and i can find no differences in the code between the titles that work and ones that dont. All posts display the correct title when viewed in a browser window, and the facebook debugger finds the title for all the posts. however, i do recieve a warning about required property missing, og:title is required. same for type, image and url in the debugger

everything but the title displays properly when sharing links.
Can anyone help with this?
Thanks..

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

披肩女神 2024-12-09 10:44:32

你能展示你的代码吗?您使用 OpenGraph 元标记吗?
您可以使用这些标签定义要在 Facebook 中显示的确切标题、描述、图像等。

<head>
<title>Page title</title>
<meta property="og:title" content="Page title to show in Facebook"/>
<meta property="og:type" content="article"/>
<meta property="og:url" content="http://www.your.page.url.com/"/>
<meta property="og:image" content="http://path.to.your/image.jpg"/>
<meta property="og:description" content="Page description"/>
</head>

更多信息:http://developers.facebook.com/docs/opengraph/

不要忘记将 OpenGraph 协议支持添加到您的页面:

<html xmlns:og="http://ogp.me/ns#">
....
</html>

Can you show your code? Do you use OpenGraph meta tags?
You can define exact title, description, image etc. to show in facebook using these tags.

<head>
<title>Page title</title>
<meta property="og:title" content="Page title to show in Facebook"/>
<meta property="og:type" content="article"/>
<meta property="og:url" content="http://www.your.page.url.com/"/>
<meta property="og:image" content="http://path.to.your/image.jpg"/>
<meta property="og:description" content="Page description"/>
</head>

More here: http://developers.facebook.com/docs/opengraph/

Do not forget to add OpenGraph protocol support to your page:

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