ניתוק

אם המשתמש מבטל את הקישור של הפעולה smart home אל Google Assistant, מילוי ההזמנה שלך מקבל action.devices.DISCONNECT בכוונה טובה. Intent זה מציין ש-Assistant לא ישלח כוונות נוספות למשתמש הזה, ושירות הענן שלך אמור להפסיק להתקשר ממשקי API של 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. מסמכי עזר של Intent.