ユーザーがsmart home アクションのリンクを
Google Assistant解除すると、フルフィルメントは
action.devices.DISCONNECT
インテントを受け取ります。このインテントは、Assistantが該当のユーザーに対するインテントを送信しなくなることを意味し、クラウドサービスでのこのデバイスに対するGoogle Home Graph API(Request Sync と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
インテントのリファレンス ドキュメントをご覧ください。