2

我正在尝试在我的页面上实现 Google Plus 共享,但不是从元标记中选择标题,而是从共享对话框标题中的 url 中选择页面标题。我还需要包含其他内容吗?

    <meta property="og:title" content="Title"/>
    <meta property="og:description" content="Description"/>

    <a href="https://plus.google.com/share?url={google.com}"/>Link</a>
4

1 回答 1

2

根据 Google Developer Site,Google Plus 共享链接的示例代码片段是:

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

于 2014-10-21T07:24:00.463 回答