डिसकनेक्ट करें

अगर उपयोगकर्ता आपकी 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 देखें इंटेंट रेफ़रंस दस्तावेज़.