Thao tác một lần nhấp cho phép người dùng thực hiện các thao tác ngay trong hộp thư đến mà không cần rời khỏi Gmail. Bạn có thể thực hiện các thao tác một lần nhấp bằng cách khai báo HttpActionHandler
với URL dịch vụ của mình. Để biết thêm thông tin chi tiết, hãy tham khảo bài viết Xử lý yêu cầu hành động.
Thao tác một lần nhấp trong Gmail.
Trường hợp sử dụng
Các thao tác Một lần nhấp hiện được hỗ trợ trong Gmail là:
Xác nhận hành động
Bạn có thể thêm nút xác nhận một lần nhấp vào email yêu cầu người dùng phê duyệt, xác nhận và xác nhận một nội dung nào đó. Sau khi người dùng nhấp vào nút, Google sẽ gửi yêu cầu http tới dịch vụ của bạn, ghi lại nội dung xác nhận. Bạn chỉ có thể tương tác với ConfirmAction
một lần.
Nội dung khai báo sau đây sẽ thêm nút ConfirmAction
vào email về báo cáo chi tiêu:
JSON-LD
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ConfirmAction",
"name": "Approve Expense",
"handler": {
"@type": "HttpActionHandler",
"url": "https://myexpenses.com/approve?expenseId=abc123"
}
},
"description": "Approval request for John's $10.13 expense for office supplies"
}
</script>
Vi dữ liệu
<div itemscope itemtype="http://schema.org/EmailMessage">
<div itemprop="potentialAction" itemscope itemtype="http://schema.org/ConfirmAction">
<meta itemprop="name" content="Approve Expense"/>
<div itemprop="handler" itemscope itemtype="http://schema.org/HttpActionHandler">
<link itemprop="url" href="https://myexpenses.com/approve?expenseId=abc123"/>
</div>
</div>
<meta itemprop="description" content="Approval request for John's $10.13 expense for office supplies"/>
</div>
Lưu hành động
Bạn có thể dùng SaveAction
để mô tả các hoạt động tương tác như lưu phiếu giảm giá hoặc thêm bài hát vào danh sách nghe. Bạn chỉ có thể tương tác với SaveAction
một lần.
Nội dung khai báo sau đây sẽ thêm nút SaveAction
vào email về ưu đãi:
JSON-LD
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "SaveAction",
"name": "Save Offer",
"handler": {
"@type": "HttpActionHandler",
"url": "https://offers-everywhere.com/save?offerId=xyz789"
}
},
"description": "$5 meal at Joe's Diner"
}
</script>
Vi dữ liệu
<div itemscope itemtype="http://schema.org/EmailMessage">
<div itemprop="potentialAction" itemscope itemtype="http://schema.org/SaveAction">
<meta itemprop="name" content="Save Offer"/>
<div itemprop="handler" itemscope itemtype="http://schema.org/HttpActionHandler">
<link itemprop="url" href="https://offers-everywhere.com/save?offerId=xyz789"/>
</div>
</div>
<meta itemprop="description" content="$5 meal at Joe's Diner"/>
</div>
Kiểm tra mục đánh dấu của bạn
Bạn có thể xác thực mã đánh dấu bằng Công cụ kiểm tra mã đánh dấu email. Dán mã đánh dấu và nhấp vào nút Xác thực để quét nội dung và nhận báo cáo về mọi lỗi có.
Thông số kỹ thuật
Đối với các thuộc tính có sẵn cho các hành động này, hãy tham khảo tài liệu về các loại cụ thể ConfirmAction và SaveAction.