Are there tags to specify the Google +1 story form

2019-01-16 18:49发布

With Facebook we have the Open Graph tags that allow webmasters to specify how the story is displayed on Facebook.

Is there something similar for the Google +1 button, that allows webmasters to specify the thumbnail image, description and title? Google+ seems to be ignoring the og-meta tags.

Example of Google's Profile +1 list, versus Facebook's wall

7条回答
成全新的幸福
2楼-- · 2019-01-16 19:16

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.

查看更多
狗以群分
3楼-- · 2019-01-16 19:27

Just answered this on another post Google +1 Generated Thumbmail in Profile

Looks Like Google+1 has the following data hierarchy:

  1. Open graph tags http://ogp.me/ - seems at the moment the only way to add the thumbnail is to use the og:image tag
  2. Normal meta tags i.e title, description
  3. Page content if there's no description set in the above options then the description is taken from the content on the page.

Hope this helps.

查看更多
贪生不怕死
4楼-- · 2019-01-16 19:28

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:

+Snippet

After +1'ing a page, the user is given the option to share the page to Google+ via a displayed Share bubble. This share bubble (along with the resulting Google+ activity post) includes a preview, or +Snippet, that contains the page title, a brief description of the page, and a thumbnail image. These pieces of data are extracted from the target URL's content in one of four ways, listed in order of precedence:

Schema.org microdata (recommended)

If the page is annotated with schema.org microdata, the +Snippet will use the name, image, and description properties found on any schema.org type.

<body itemscope itemtype="http://schema.org/Product">
  <h1 itemprop="name">Shiny Trinket</h1>
  <img itemprop="image" src="image-url"></img>
  <p itemprop="description">Shiny trinkets are shiny.</p>
</body>

Open Graph protocol

If the page contains Open Graph properties for the title, image, and description, then they will be used for the +Snippet.

<meta property="og:title" content="..."/>
<meta property="og:image" content="..."/>
<meta property="og:description" content="..."/>

Meta "title" and "description" tags

If the page's element contains and tags, the +Snippet will use their content attributes for the title and description, respectively. For the thumbnail image, the sharebox will attempt to find a suitable image on the page.

<meta name="title" content="..." />
<meta name="description" content="..." />
查看更多
\"骚年 ilove
5楼-- · 2019-01-16 19:28

meta og:image works, secret is to have image large enough. It failed at 140x112 and work when I change to bigger thumbnail 511x364

查看更多
不美不萌又怎样
6楼-- · 2019-01-16 19:31

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.

查看更多
贼婆χ
7楼-- · 2019-01-16 19:37

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!

查看更多
登录 后发表回答