1

我正在使用 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 帐户显示。

4

1 回答 1

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 尚未启动。请跟踪发行说明页面以获取所有更新。

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

于 2013-06-03T18:55:31.643 回答