Gmail 收件箱查看操作 - "A value for the url field is required."

Gmail Inbox View Action - "A value for the url field is required."

我正在尝试为重置密码的 Gmail 收件箱操作获取正确的标记。我正在使用 Email Markup Tester

我的标记如下所示:

<div itemscope itemtype="http://schema.org/EmailMessage">
  <meta itemprop="description" content="Reset password instructions"/>
  <div itemprop="potentialAction" itemscope itemtype="http://schema.org/ViewAction">
    <meta itemprop="target" content="https://www.example.com/users/password/new?token=123"/>
    <meta itemprop="name" content="Reset Your Password"/>
  </div>
  <meta itemprop="description" content="Visit our site to reset your password."/>
</div>

上面的标记 returns 错误:

A value for the url field is required.

但我不知道如何将 url 字段插入到标记中。甚至 Google's example 也未能通过他们的标记验证器。

(不确定这是否只是他们测试工具的错误,或者这是否真的是未记录的新要求。)

如果值为 [=],您可以提供 url 属性 in addition to the target property. Also note that you have to 使用 link 元素(而不是 meta 元素) 25=].

所以会是:

<link itemprop="target url" href="https://www.example.com/users/password/new?token=123" />

报告 Google 的电子邮件标记测试器没有错误。