Email 无法使用电子邮件更新Google Now卡

Email 无法使用电子邮件更新Google Now卡,email,google-schemas,google-now,Email,Google Schemas,Google Now,我正在尝试测试从电子邮件触发Google Now卡,然后使用modifiedTime属性更新时间。以下是我的初始电子邮件标记,用于触发初始Google Now卡(它正在工作): { “@context”:”http://schema.org", “@type”:“EventReservation”, “reservationNumber”:“E123456789”, “reservationStatus”:http://schema.org/Confirmed", “姓名下”:{ “@type

我正在尝试测试从电子邮件触发Google Now卡,然后使用modifiedTime属性更新时间。以下是我的初始电子邮件标记,用于触发初始Google Now卡(它正在工作):


{
“@context”:”http://schema.org",
“@type”:“EventReservation”,
“reservationNumber”:“E123456789”,
“reservationStatus”:http://schema.org/Confirmed",
“姓名下”:{
“@type”:“Person”,
“姓名”:“测试人员”
},
“预订”:{
“@type”:“事件”,
“名称”:“测试事件”,
“起始日期”:“2015-05-19T16:00:00-05:00”,
“地点”:{
“@type”:“Place”,
“姓名”:“你的家”,
“地址”:{
“@type”:“PostalAddress”,
“街道地址”:“111大街”,
“地址地点”:“哥伦布”,
“地址区域”:“哦”,
“postalCode”:“43215”,
“地址国家”:“美国”
}
}
},
“modifyReservationUrl”:http://www.test.com/testing"
}
考试预约
下面是我用来更新Google Now卡以反映时间变化的后续电子邮件(它没有效果):


{
“@context”:”http://schema.org",
“@type”:“EventReservation”,
“reservationNumber”:“E123456789”,
“reservationStatus”:http://schema.org/Confirmed",
“姓名下”:{
“@type”:“Person”,
“姓名”:“测试人员”
},
“预订”:{
“@type”:“事件”,
“名称”:“测试事件”,
“起始日期”:“2015-05-19T16:00:00-05:00”,
“地点”:{
“@type”:“Place”,
“姓名”:“你的家”,
“地址”:{
“@type”:“PostalAddress”,
“街道地址”:“111大街”,
“地址地点”:“哥伦布”,
“地址区域”:“哦”,
“postalCode”:“43215”,
“地址国家”:“美国”
}
}
},
“modifyReservationUrl”:http://www.test.com/testing",
“修改时间”:“2015-05-19T18:00:00-05:00”
}
更改考试预约
根据这里的文档:我读到“您可以通过发送更新的事件保留并将modifiedTime设置为更新时间来更新事件保留”。这两封电子邮件之间的唯一区别是电子邮件的正文和我在第二封邮件中包含modifiedTime这一事实

一些额外的背景信息: 1.在发送之前,我已在此处验证我的标记:
2.我正在使用Gmail Actions示例应用程序发送我的测试电子邮件:

查看您的第一封电子邮件和后续电子邮件中的标记后,您的开始日期属性似乎相同(2015-05-19T16:00:00-05:00)。您的后续电子邮件应在开始日期属性中包含更新时间(2015-05-19T18:00:00-05:00)


如果查看上的说明,则modifiedTime属性是您上次修改预订的时间,而不是实际更新时间的输入位置

查看第一封电子邮件和后续电子邮件中的标记后,您的开始日期属性看起来是相同的(2015-05-19T16:00:00-05:00)。您的后续电子邮件应在开始日期属性中包含更新时间(2015-05-19T18:00:00-05:00)


如果查看上的说明,则modifiedTime属性是您上次修改预订的时间,而不是实际更新时间的输入位置

查看第一封电子邮件和后续电子邮件中的标记后,您的开始日期属性看起来是相同的(2015-05-19T16:00:00-05:00)。您的后续电子邮件应在开始日期属性中包含更新时间(2015-05-19T18:00:00-05:00)


如果查看上的说明,则modifiedTime属性是您上次修改预订的时间,而不是实际更新时间的输入位置

查看第一封电子邮件和后续电子邮件中的标记后,您的开始日期属性看起来是相同的(2015-05-19T16:00:00-05:00)。您的后续电子邮件应在开始日期属性中包含更新时间(2015-05-19T18:00:00-05:00)

如果查看上的说明,则modifiedTime属性是您上次修改预订的时间,而不是实际更新时间的输入位置

<html>
<body>

<script type="application/ld+json">
{
  "@context": "http://schema.org",
  "@type": "EventReservation",
  "reservationNumber": "E123456789",
  "reservationStatus": "http://schema.org/Confirmed",
  "underName": {
    "@type": "Person",
    "name": "Test Person"
  },
  "reservationFor": {
    "@type": "Event",
    "name": "Test Event",
    "startDate": "2015-05-19T16:00:00-05:00",
    "location": {
      "@type": "Place",
      "name": "Your Home",
      "address": {
        "@type": "PostalAddress",
        "streetAddress": "111 Main Street",
        "addressLocality": "Columbus",
        "addressRegion": "OH",
        "postalCode": "43215",
        "addressCountry": "US"
      }
    }
  },
  "modifyReservationUrl": "http://www.test.com/testing"
}
</script>
<div>Test Appointment</div>
</body>
</html>
<html>
<body>

<script type="application/ld+json">
{
  "@context": "http://schema.org",
  "@type": "EventReservation",
  "reservationNumber": "E123456789",
  "reservationStatus": "http://schema.org/Confirmed",
  "underName": {
    "@type": "Person",
    "name": "Test Person"
  },
  "reservationFor": {
    "@type": "Event",
    "name": "Test Event",
    "startDate": "2015-05-19T16:00:00-05:00",
    "location": {
      "@type": "Place",
      "name": "Your Home",
      "address": {
        "@type": "PostalAddress",
        "streetAddress": "111 Main Street",
        "addressLocality": "Columbus",
        "addressRegion": "OH",
        "postalCode": "43215",
        "addressCountry": "US"
      }
    }
  },
  "modifyReservationUrl": "http://www.test.com/testing",
  "modifiedTime": "2015-05-19T18:00:00-05:00"  
}
</script>
<div>Test Appointment Changed</div>
</body>
</html>