我正在尝试使用“确认操作”为 Gmail 实施一键式操作。开发者页面指定了一个“requiresConfirmation”选项[if true, additional confirmation is required before the handler executes]
。我尝试将其设置为“真”,但没有奏效。
这应该如何工作?我正在使用以下标记
<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进行验证。任何帮助,将不胜感激。上面的代码以其他方式工作。