قطع الاتصال

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