如果 Google 助理符合我们的 资格要求和适用地区 指南和以下技术要求:
- 公开一个符合以下要求的有效 XML Feed: RSS 2.0 规范和 关于 Google 助理规范的新闻简报。
- 确保 GoogleBot
可以访问您的 RSS 新闻 Feed 和媒体文件,例如音频或视频。为了遵守政策,所有
部分 Feed 和文件不得要求登录。此外,它们都无法使用
robots.txt
可屏蔽 GoogleBot。
Google 助理规范新闻简报
请确保内容符合以下规范。音频和视频新闻示例 请参阅示例部分。
我们要求使用由 iTunes 扩展程序定义的标签,因此请确保包含
<rss>
标记中的适当 xmlns
命名空间声明,
置顶。如需了解详情,请参阅以下示例:
<rss version="2.0" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd">
<channel>
级别:
<channel> 级别的新闻简报发布内容 RSS 标记 |
|
---|---|
<title> |
必填。 新闻内容的名称。 |
<link> |
必填。 您的新闻内容首页的完全限定网址。 使用 抓取方式 Google 或 适合移动设备 测试以测试首页能否访问 Googlebot。 |
<description> |
必填。 新闻内容的说明。 |
<image> |
必填。 与新闻内容相关联的图片。 映像需要满足以下要求:
如需了解详情,请参阅以下示例: <image> |
<itunes:block> |
不需要。 用于防止 Feed 在 iTunes 或 Google 等产品上公开发布的代码 播客。 如需启用保护,请将 如需了解详情,请参阅以下示例:
|
<item> |
必填。 包含新闻简报剧集详情(例如标题)的标签; 说明、媒体文件和时长 Google 助理新闻简报仅播放最新新闻内容,例如
来自最新的 如需详细了解要求的规格,请参阅 新闻简报分集 RSS 标记。 |
<item>
级别:
<item> 级别的新闻简报分集 RSS 标记 |
|
---|---|
<title> |
必填。 新闻简报分集的名称。 |
<description> |
必填。 新闻简报剧集的说明。 |
<enclosure> |
必填。 新闻简报分集的文件大小、类型和位置。
如需了解详情,请参阅以下示例:
|
<guid> |
必填。 为每条新闻永久分配且区分大小写的全局唯一标识符 (GUID) 简报一集。 如果您的标识符不是完全限定网址,请设置 如需了解详情,请参阅以下示例:
|
<pubDate> |
必填。 新闻简报分集的发布日期和时间。 这些值仅在 RFC 822 格式的日期 和时间。如需了解详情,请参阅以下示例: <pubDate>Thu, 22 Sep 2016 21:11:46 GMT</pubDate> |
<itunes:duration> |
必填。 新闻简报分集的时长(以小时、分钟和秒为单位)。 您可以指定以下某种格式,其中 H = 小时,M = 分钟,S = 秒:
如需了解详情,请参阅以下示例:
|
示例
以下示例显示了新闻音频和视频内容所需的最低数据集 Google 助理简报。他们遵循 RSS 2.0 以及我们所有的 技术要求。
音频新闻简报示例
以下是音频新闻简报的示例:
<rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"
version="2.0">
<channel>
<title>The Example Times</title>
<link>http://www.example.com/theexampletimes</link>
<description>The latest news from The Example Times.</description>
<language>en-us</language>
<copyright>Copyright 2018 The Example Times – For Personal Use Only</copyright>
<image>
<url>http://www.example.com/theexampletimes/logo.png?s=1400</url>
<title>The Example Times</title>
<link>http://www.example.com/theexampletimes</link>
</image>
<itunes:block>yes</itunes:block>
<item>
<title>The Example Times Daily News Briefing</title>
<itunes:title>The Example Times Daily News Briefing</itunes:title>
<description>Your daily dose of news from The Example Times.</description>
<guid>http://www.example.com/theexampletimes/id/1234567893</guid>
<enclosure length="4500000" type="audio/mpeg" url="http://www.example.com/theexampletimes/sample.mp3"/>
<pubDate>Thu, 8 Jun 2018 11:11:00 GMT</pubDate>
<itunes:duration>300</itunes:duration>
</item>
</channel>
</rss>
视频新闻简报示例
以下是视频新闻简报的示例:
<rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"
version="2.0">
<channel>
<title>The Example Times</title>
<link>http://www.example.com/theexampletimes</link>
<description>The latest news from The Example Times.</description>
<language>en-us</language>
<copyright>Copyright 2018 The Example Times – For Personal Use Only</copyright>
<image>
<url>http://www.example.com/theexampletimes/logo.png?s=1400</url>
<title>The Example Times</title>
<link>http://www.example.com/theexampletimes</link>
</image>
<itunes:block>yes</itunes:block>
<item>
<title>The Example Times Daily News Briefing</title>
<itunes:title>The Example Times Daily News Briefing</itunes:title>
<description>Your daily dose of news from The Example Times.</description>
<guid isPermaLink="false">sample-id-2345678901</guid>
<enclosure length="9000000" type="video/mp4" url="http://www.example.com/theexampletimes/sample.mp4"/>
<pubDate>Thu, 8 Jun 2018 11:12:00 GMT</pubDate>
<itunes:duration>300</itunes:duration>
</item>
</channel>
</rss>