是否有标签可以指定 Google+1 中的 Google+1 故事格式?就像 Facebook 的 og-meta 一样?
对于 Facebook
,我们有 Open Graph 标签
< /a> 允许网站管理员指定如何在 Facebook 上显示故事。
是否有类似 Google +1
按钮的功能,允许网站管理员指定缩略图、说明和标题? Google+
似乎忽略了 og-meta 标记
。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(7)
从 Google+ 帮助文档中,我们现在有了官方答案。
Google 使用 schema.org 微数据在搜索(以及 Google+)中生成丰富网页摘要。在这两个链接中,有很多关于 schema.org 及其与 Facebook OpenGraph 的关系的文章:
请参阅:http://www.google.com/support/webmasters/bin/answer.py?answer=1211158
请参阅:https://developers.google.com/+/plugins/+1button/
一些重要的部分:
From Google+ help docs, we now have an official answer.
Google uses schema.org microdata to generate rich snippets in search (and in Google+). There's a lot written about schema.org and how it relates to Facebook OpenGraph in these two links:
See: http://www.google.com/support/webmasters/bin/answer.py?answer=1211158
See: https://developers.google.com/+/plugins/+1button/
Some important bits:
如果我在 Google+ 中分享我们的网络应用程序 (restorm.com) 的链接,则标题、说明和图像取自相应的
og:
标签 (og:title
, <代码>og:描述,<代码>og:图像)。这些标签
最终会像这样共享
所以标题和描述肯定取自
og: title
和og:description
,而不是来自标题和描述元标记...If I share a link to our webapp (restorm.com) in Google+ then the title, description and image are taken from the respective
og:
tags (og:title
,og:description
,og:image
).These tags
end up being shared like this
So the title and description are definitely taken from
og:title
andog:description
, and not from the title and description meta tag...太小或不够方形的图像将不会包含在 +Snippet 中,即使使用 schema.org 微数据或 Open Graph 标记明确引用也是如此。具体来说,高度必须至少为 120px,如果宽度小于 100px,则长宽比不得大于 3.0。
Images that are too small or not square enough will not be included in the +Snippet, even if explicitly referenced using schema.org microdata or Open Graph markup. Specifically, the height must be at least 120px, and if the width is less than 100px, then the aspect ratio must be no greater than 3.0.
刚刚在另一篇文章中回答了这个问题Google +1 在个人资料中生成了缩略图
看起来 Google+1 具有以下数据层次结构:
希望这有帮助。
Just answered this on another post Google +1 Generated Thumbmail in Profile
Looks Like Google+1 has the following data hierarchy:
Hope this helps.
我正在研究这个问题,但 Google+ 没有获取我的 OG 标签。
当我将
放入 HTML 中时,它开始拾取它们。
希望这可以节省一些人的时间!
I am working on this, and Google+ wasn't picking up my OG tags.
When I put:
<body itemscope itemtype="http://schema.org/Article">
into the HTML it started to pick them up.Hope this saves someone some time!
meta og:图像有效,秘诀是图像足够大。它在 140x112 时失败,但当我更改为更大的缩略图 511x364 时工作
meta og:image works, secret is to have image large enough. It failed at 140x112 and work when I change to bigger thumbnail 511x364
谷歌似乎在标准元标记中使用页面的标题和描述。然而,它似乎无法指定缩略图。
Google appears to be using the Title and Description of the page, in standard meta tags. It seems to have no way of specifying a thumbnail, however.