قطع الاتصال

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