ユーザーが 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
をご覧ください。
インテントのリファレンス ドキュメントをご覧ください。