قطع الاتصال

إذا أزال المستخدم ربط smart home الإجراء من Google Assistant، سيتلقّى الإجراء الذي تقدّمه هدفًا action.devices.DISCONNECT. يشير هذا الإجراء إلى أنّ Assistant لن ترسل أي إجراءات أخرى لهذا المستخدم، ومن المفترض أن تتوقف خدمة السحابة الإلكترونية عن طلب بيانات من واجهات برمجة تطبيقات Google Home Graph (Request Sync و 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 intent.