사용자가 다음에서 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 {}; });
자바
@Override public void onDisconnect( @NotNull DisconnectRequest disconnectRequest, @Nullable Map<?, ?> map) { // TODO Disconnect user account from Google Assistant // This function does not return anything }
자세한 내용은 DISCONNECT
를 참고하세요.
인텐트 참조 문서를 확인하세요.