Willkommen beim Google Home Developer Center, der neuen Anlaufstelle für Informationen über Smart-Home-Aktionen. Hinweis:Die Aktionen in der Actions Console werden weiterhin erstellt.

Verbindung trennen

Wenn der Nutzer die Verknüpfung der Aktion smart home mit Google Assistant aufhebt, empfängt die Auftragsausführung einen action.devices.DISCONNECT-Intent. Dieser Intent zeigt an, dass Assistant keine weiteren Intents für diesen Nutzer sendet. Der Cloud-Dienst sollte dann keine Google Home Graph-APIs mehr anfordern (Anfragesynchronisierung und Report State) für seine Geräte.

Anfrage
{
    "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
}

Weitere Informationen finden Sie in der Dokumentation zu DISCONNECT-Intent-Referenzen.