ยกเลิกการเชื่อมต่อ

หากผู้ใช้ยกเลิกการลิงก์การดำเนินการ smart home ของคุณจาก Google Assistant การดำเนินการตามคำสั่งซื้อจะได้รับ action.devices.DISCONNECT Intent Intent นี้บ่งชี้ว่า Assistant จะไม่ส่ง Intent เพิ่มเติมสำหรับผู้ใช้รายนี้ และบริการระบบคลาวด์ของคุณควรหยุดการเรียกใช้ Google Home Graph API (ขอซิงค์และ Report State) สำหรับอุปกรณ์ของตนเอง

คำขอ
{
    "requestId": "ff36a3cc-ec34-11e6-b1a0-64510650abcf",
    "inputs": [{
      "intent": "action.devices.DISCONNECT",
    }]
}
JSON
{}
Node.js
const {smarthome} = require('actions-on-google');
const app = smarthome();
// ...
app.onDisconnect((body, headers) => {
  // TODO Disconnect user account from Google Assistant
  // You can return an empty body
  return {};
});
Java
@Override
public void onDisconnect(
    @NotNull DisconnectRequest disconnectRequest, @Nullable Map<?, ?> map) {
  // TODO Disconnect user account from Google Assistant
  // This function does not return anything
}

ดูข้อมูลเพิ่มเติมได้ที่DISCONNECT เอกสารอ้างอิงความตั้งใจ