1

我看到谷歌看到了正确结构化的数据,但这些数据没有预先填充在共享对话框中。来自谷歌开发工具的数据:rdfa-node 属性:

image:  https://s3.amazonaws.com/<bucket>/images/image_200_200.JPG
title:  Sandal
url:    https://site.amazonaws.com/p/view/27
description:    description
type:   article

我的元标签:

<meta property="og:image" content="https://s3.amazonaws.com/<bucket>/images/image_200_200.JPG">
<meta property="og:title" content="Sandal">
<meta property="og:url" content="https://site.amazonaws.com/p/view/27">
<meta property="og:description" content="description">
<meta property="og:type" content="article">

调用对话框的代码:

<a class="gplus in-popup" sm_type="gplus" href="https://plus.google.com/share?url=https://site.amazonaws.com/p/view/27"></a>

图片为 200*200 像素。我试过 900*900 和 120*120 - 一样。一切看起来都不错,但我仍然只能在共享对话框中看到 url。是否有可能是因为图像来自另一个主机?也许还有一些其他的事情?

4

1 回答 1

2

您是否尝试过使用片段微数据?使用Google+ 开发者页面上的代码片段工具来生成它。

以下示例说明了如何输入您的微数据:

<!-- Update your html tag to include the itemscope and itemtype attributes. -->
<html itemscope itemtype="http://schema.org/Article">

<!-- Add the following three tags inside head. -->
<meta itemprop="name" content="Sandal">
<meta itemprop="description" content="description">
<meta itemprop="image" content="https://s3.amazonaws.com/&amp;lt;bucket&amp;gt;/images/image_200_200.JPG">
于 2013-01-09T18:59:32.830 回答