我正在尝试使用“确认操作”为Gmail实施一键式操作。 developer page指定了'requiresConfirmation'选项[if true, additional confirmation is required before the handler executes]
。我尝试将其设置为“true”,但无效。
这应该如何运作?我正在使用以下标记
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"description": "Verify your email address",
"action": {
"@type": "ConfirmAction",
"name": "Verify Email Address",
"handler": {
"@type": "HttpActionHandler",
"url": "https://mywebsite.com/verify?email=info@mywebsite.com",
"requiresConfirmation": true
}
}
}
</script>
架构在Schema Validator验证。任何帮助,将不胜感激。上面的代码不起作用。
答案 0 :(得分:2)
尚不支持requiresConfirmation
标志。我会确保更新文档以反映当前状态。