社交发现

作者:Eiji Kitamura

您只需为每个页面添加几行代码,就可以影响通过社交媒体分享时网站的呈现方式。 这可能有助于吸引更多的人访问您的网站,因为提供的预览所包含的信息要比以其他方式提供的信息更加丰富。

TL;DR

  • 使用 schema.org microdata 来提供 Google+ 的页面标题、说明和图片。
  • 使用开放图表协议 (OGP) 来提供 Facebook 的页面标题、说明和图片。
  • 使用 Twitter Card 来提供 Twitter 的页面标题、说明、图片以及 Twitter ID。

您只需为每个页面添加几行代码,就可以影响通过社交媒体分享时网站的呈现方式。 这可能有助于提高吸引力,因为提供的预览所包含的信息要比以其他方式提供的信息更加丰富。如果没有它,社交网站只能提供不含图片或其他有帮助信息的基本信息。

您认为下面哪一个被点击的可能性更大?用户容易被图片吸引,如果能提前预览,就会更坚信他们会喜欢自己找到的内容。

使用了适当的标记:包含正确的标题、简短说明和图片。 添加这些项目可能有助于提高吸引力。

未使用适当的标记,只包含页面标题。

当社交网络上的某个人想把您的网站分享给自己的朋友时,他们多半会添加一些注释来说明它有多棒,然后再进行分享。但描述网站往往是件麻烦事,并且从网页所有者的观点来看,描述的内容可能抓不住要点。某些服务会对用户可以在注释中输入的字符数作出限制。

您可以通过向页面添加适当的元数据来提供标题、说明和吸引人的图片,从而简化用户的分享过程。这意味着他们不必将宝贵的时间(或字符)浪费在描述链接上。

使用 schema.org + microdata 在 Google+ 上提供丰富的摘要

抓取工具使用许多方法来解析页面和识别其内容。通过使用microdataschema.org词汇,您可以帮助社交网站和搜索引擎更有效地识别页面的内容。

下面是一个示例:

<div itemscope itemtype="http://schema.org/Article">
  <h1 itemprop="name">Enjoy fireworks</h1>
  <p itemprop="description">Fireworks are beautiful.
   This article explains how beautiful fireworks are.</p>
  <img itemprop="image" src="//developers.google.com/web/imgs/fireworks.jpg" />
</div>

尽管大多数元数据嵌入在网页的 head 部分,但 microdata 则是位于存在上下文的位置。

添加itemscope来定义 microdata 作用域

通过添加itemscope,您可以将标记指定为一个有关特定项的内容块。

添加itemtype来定义网站类型

您可以将itemtype属性与itemscope联用来指定项目的类型。itemtype的值可根据网页上的内容类型确定。 您应该可以在此页面中找到一个相关值。

添加itemprop来使用 schema.org 词汇描述每个项目

itemprop定义作用域中itemtype的属性。对于向社交网站提供元数据,典型的itemprop值为namedescriptionimage

了解详情

这些 microdata 向抓取工具(通常是Google+和 Google 搜索)提供语义信息。 如需了解有关 Google+ 上摘要和渲染的更多信息,请阅读下列文档:

验证丰富摘要

要验证 Google+ 上的丰富摘要,您可以使用下面这样的工具:

使用开放图表协议 (OGP) 在 Facebook 上提供丰富摘要

开放图表协议 (OGP)为 Facebook 提供了必要的元数据,让网页能够具有与其他 Facebook 对象相同的功能。

<html prefix="g: http://ogp.me/ns#">
  <head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
    <link rel="stylesheet" href="https://code.getmdl.io/1.2.1/material.indigo-pink.min.css">
    <script defer src="https://code.getmdl.io/1.2.1/material.min.js"></script>
    <style>
      body {
        margin: 2em;
      }
    </style>
    <meta property="og:title" content="Enjoy Fireworks">
    <meta property="og:description" content="Fireworks are beautiful.
     This article explains how beautiful fireworks are.">
    <meta property="og:image" content=
     "https://developers.google.com/web/imgs/fireworks.jpg">
    <meta property="og:url" content=
     "{{site.sample_link_base}}discovery-and-distribution/optimizations-for-crawlers/social-sites.html">
    <meta property="og:type" content="website">

加入网页的 head 部分时,这些元数据可以在分享网页时提供丰富的摘要信息。

使用og:带命名空间的meta标记来描述元数据

一个meta标记包括一个property属性和一个content属性。属性和内容可取下列值:

属性 内容
og:title 网页的标题。
og:description 网页的说明。
og:url 网页的规范网址。
og:image 分享的帖子随附图片的网址。
og:type 表示网页类型的字符串。您可以在此处找到适合网页的字符串。

这些元标记向社交网站(通常是Google+Facebook)的抓取工具提供语义信息。

了解详情

如需了解有关可以为 Facebook 帖子附加的内容的更多信息,请访问 Open Graph Protocol 官方网站。

验证丰富摘要

要验证 Facebook 上的标记,您可以使用下面这样的工具:

使用 Twitter Card 在 Twitter 上提供丰富摘要

Twitter Card适用于 Twitter 的开放图表协议的一个扩展程序。 它们允许您向包含网页链接的 Tweets 添加图片和视频之类的媒体附件。通过添加相应的元数据,可以为包含网页链接的 Tweets 添加一张卡片,其中包含您添加的丰富细节。

使用twitter:带命名空间的元标记来描述元数据

为了让 Twitter Card 发挥作用,您的网域必须获得批准并必须包含以twitter:card作为name属性而非property属性的元标记。

下面是一个快速示例:

<html prefix="g: http://ogp.me/ns#">
  <head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
    <link rel="stylesheet" href="https://code.getmdl.io/1.2.1/material.indigo-pink.min.css">
    <script defer src="https://code.getmdl.io/1.2.1/material.min.js"></script>
    <style>
      body {
        margin: 2em;
      }
    </style>
    <meta property="og:title" content="Enjoy Fireworks">
    <meta property="og:description" content="Fireworks are beautiful.
     This article explains how beautiful fireworks are.">
    <meta property="og:image" content=
     "https://developers.google.com/web/imgs/fireworks.jpg">
    <meta property="og:url" content=
     "{{site.sample_link_base}}discovery-and-distribution/optimizations-for-crawlers/social-sites.html">
    <meta property="og:type" content="website">
    <meta name="twitter:card" content="summary_large_image">
    <meta name="twitter:site" content="agektmr">

通过将 Twitter ID 指定为 twitter:site 的值,Twitter 可以将这些信息嵌入到分享的帖子中,这样用户就能轻松地与页面所有者进行互动。

了解详情

如需了解有关 Twitter Card 的更多信息,请访问:

验证丰富摘要

为验证标记,Twitter 提供了以下工具:

最佳做法

考虑到所有三个选择,最佳做法是将它们都加入到网页中。 下面是一个示例:

<!-- namespace declaration -->
<html prefix="og: http://ogp.me/ns#">
  <!-- define microdata scope and type -->
  <head itemscope itemtype="http://schema.org/Article">
    <title>Social Site Example</title>
    <!-- define ogp and itemprop of microdata in one line -->
    <meta property="og:title" itemprop="name" content="Enjoy Fireworks">
    <!-- define ogp image -->
    <meta property="og:image" content=
     "https://developers.google.com/web/imgs/fireworks.jpg">
    <!-- use link[href] to define image url for microdata -->
    <link itemprop="image" href="//developers.google.com/web/imgs/fireworks.jpg">
    <!-- define ogp and itemprop of microdata in one line -->
    <meta property="og:url" content=
     "{{site.sample_link_base}}discovery-and-distribution/optimizations-for-crawlers/social-sites2.html">
    <!-- define ogp type -->
    <meta property="og:type" content="website">
    <!-- define twitter cards type -->
    <meta name="twitter:card" content="summary_large_image">
    <!-- define site's owner twitter id -->
    <meta name="twitter:site" content="agektmr">
    <!-- define description for ogp and itemprop of microdata in one line -->
    <meta property="og:description" itemprop="description"
     content="Fireworks are beautiful. This article explains how beautiful fireworks are.">
    <!-- general description (separate with ogp and microdata) -->
    <meta name="description" content="Fireworks are beautiful.
     This article explains how beautiful fireworks are.">
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
    <link rel="stylesheet" href="https://code.getmdl.io/1.2.1/material.indigo-pink.min.css">
    <script defer src="https://code.getmdl.io/1.2.1/material.min.js"></script>
    <style>
      body {
        margin: 2em;
      }
    </style>
  </head>

请注意,microdata 和 OGP 共享某些标记:

  • itemscope位于head标记处
  • titledescription在 microdata 与 OGP 之间共享
  • itemprop="image"使用带href属性的link标记,而不是重复使用带property="og:image"meta标记 最后,务必验证网页在各社交网站上的呈现方式合乎预期,然后再进行发布。

results matching ""

    No results matching ""