Gmail确认操作(以及推出计划)

时间:2013-06-03 15:47:14

标签: google-schemas

我正在使用Apps脚本教程(发送给自己的电子邮件)测试操作,但目前只显示Go-To操作。这是我用来生成确认操作的代码,我做错了吗?

<script type="application/ld+json">{
    "@context": "http://schema.org",
    "@type": "EmailMessage",
    "description": "Retry fax sending",
    "action": {
        "@type": "ConfirmAction",
        "name": "Retry",
        "handler": {
            "@type": "HttpActionHandler",
            "url": "http://example.com/do/ba98262b-6eb9-4314-a01a-8ff3076821e3"
            "method": "POST"
        }
    }
}
是的,有什么地方可以检查Gmail动作的推出状态吗?例如,我的Google Apps帐户不显示任何操作,而我的“标准”Gmail帐户则显示。

1 个答案:

答案 0 :(得分:0)

您只是在handler.url属性后缺少逗号,这是正确的标记:

<script type="application/ld+json">
{
    "@context": "http://schema.org",
    "@type": "EmailMessage",
    "description": "Retry fax sending",
    "action": {
        "@type": "ConfirmAction",
        "name": "Retry",
        "handler": {
            "@type": "HttpActionHandler",
            "url": "http://example.com/do/ba98262b-6eb9-4314-a01a-8ff3076821e3",
            "method": "POST"
        }
    }
}
</script>

您可以使用Schema Validator工具检查标记是否存在如下语法错误:https://developers.google.com/gmail/schemas/testing-your-schema

启动Go-To和One-Click操作,而Review和RSVP尚未启动。请跟踪Release Notes页面以获取所有更新。

对于Google Apps帐户的问题,请注意,域管理员会决定他们想要加入哪个跟踪,并控制他们何时获得新功能。