जब उपयोगकर्ता किसी डिवाइस की मौजूदा स्थिति के बारे में जानकारी पाने के लिए Google Assistant के साथ इंटरैक्ट करते हैं, तो आपके फ़ुलफ़िलमेंट को एक action.devices.QUERY
इंटेंट मिलता है. इसमें डिवाइस आईडी की सूची होती है, जो आपके SYNC
रिस्पॉन्स से मिलती है.
जब उपयोगकर्ता आपके डिवाइस को कंट्रोल करने के लिए Assistant को निर्देश भेजते हैं, तो आपके फ़ुलफ़िलमेंट को action.devices.EXECUTE
इंटेंट मिलता है.
QUERY
इंटेंट मैनेज करना
आपके QUERY
जवाब में, अनुरोध किए गए डिवाइसों पर काम करने वाले हर ट्रैट के लिए, स्थितियों का पूरा सेट शामिल होता है.
{ "requestId": "ff36a3cc-ec34-11e6-b1a0-64510650abcf", "inputs": [{ "intent": "action.devices.QUERY", "payload": { "devices": [{ "id": "123", "customData": { "fooValue": 74, "barValue": true, "bazValue": "foo" } }, { "id": "456", "customData": { "fooValue": 12, "barValue": false, "bazValue": "bar" } }] } }] }
JSON
{ "requestId": "ff36a3cc-ec34-11e6-b1a0-64510650abcf", "payload": { "devices": { "123": { "on": true, "online": true }, "456": { "on": true, "online": true, "brightness": 80, "color": { "name": "cerulean", "spectrumRGB": 31655 } } } } }
Node.js
const {smarthome} = require('actions-on-google'); const app = smarthome(); // ... app.onQuery((body, headers) => { // TODO Get device state return { requestId: body.requestId, payload: { devices: { 123: { on: true, online: true }, 456: { on: true, online: true, brightness: 80, color: { name: "cerulean", spectrumRGB: 31655 } } } } }; });
Java
@NotNull @Override public QueryResponse onQuery(@NotNull QueryRequest queryRequest, @Nullable Map<?, ?> map) { QueryResponse.Payload payload = new QueryResponse.Payload(); payload.setDevices( new HashMap<String, Map<String, Object>>() { { put( "123", new HashMap<String, Object>() { { put("on", true); put("online", true); } }); put( "456", new HashMap<String, Object>() { { put("on", true); put("online", true); put("brightness", 80); put( "color", new HashMap<String, Object>() { { put("name", "cerulean"); put("spectrumRGB", 31655); } }); } }); } }); return new QueryResponse(queryRequest.getRequestId(), payload); }
ज़्यादा जानकारी के लिए, QUERY
इंटेंट के रेफ़रंस दस्तावेज़ देखें.
EXECUTE
इंटेंट मैनेज करना
QUERY
की तरह ही, एक इंटेंट कई डिवाइस आईडी को टारगेट कर सकता है. किसी एक EXECUTE
इंटेंट में, डिवाइसों के ग्रुप को दिए गए कई अलग-अलग निर्देश भी हो सकते हैं. उदाहरण के लिए, ट्रिगर किया गया इंटेंट, लाइटों के ग्रुप पर चमक और रंग, दोनों को सेट कर सकता है. इसके अलावा, एक से ज़्यादा लाइटों को अलग-अलग रंग में सेट कर सकता है. EXECUTE
के जवाब में, डिवाइस की नई स्थिति दिखनी चाहिए.
उपयोगकर्ता के डिवाइस की स्थिति बदलने पर, Report State का इस्तेमाल करें. उदाहरण के लिए, EXECUTE
इंटेंट या स्थानीय स्थिति में बदलाव (जैसे, मैन्युअल रूप से लाइट स्विच को फ़्लिप करना) की वजह से.
इससे Google Home Graph, आपकी क्लाउड सेवा के साथ सिंक रहता है.
{ "requestId": "ff36a3cc-ec34-11e6-b1a0-64510650abcf", "inputs": [{ "intent": "action.devices.EXECUTE", "payload": { "commands": [{ "devices": [{ "id": "123", "customData": { "fooValue": 74, "barValue": true, "bazValue": "sheepdip" } }, { "id": "456", "customData": { "fooValue": 36, "barValue": false, "bazValue": "moarsheep" } }], "execution": [{ "command": "action.devices.commands.OnOff", "params": { "on": true } }] }] } }] }
JSON
{ "requestId": "ff36a3cc-ec34-11e6-b1a0-64510650abcf", "payload": { "commands": [ { "ids": [ "123" ], "status": "SUCCESS", "states": { "on": true, "online": true } }, { "ids": [ "456" ], "status": "ERROR", "errorCode": "deviceTurnedOff" } ] } }
Node.js
const {smarthome} = require('actions-on-google'); const app = smarthome(); // ... app.onExecute((body, headers) => { // TODO Send command to device return { requestId: body.requestId, payload: { commands: [{ ids: ["123"], status: "SUCCESS", states: { on: true, online: true } }, { ids: ["456"], status: "ERROR", errorCode: "deviceTurnedOff" }] } }; });
Java
@NotNull @Override public ExecuteResponse onExecute( @NotNull ExecuteRequest executeRequest, @Nullable Map<?, ?> map) { ExecuteResponse.Payload payload = new ExecuteResponse.Payload(); payload.setCommands( new Commands[] { new Commands( new String[] {"123"}, "SUCCESS", new HashMap<String, Object>() { { put("on", true); put("online", true); } }, null, null), new Commands(new String[] {"456"}, "ERROR", null, "deviceTurnedOff", null) }); return new ExecuteResponse(executeRequest.getRequestId(), payload); }
ज़्यादा जानकारी के लिए, EXECUTE
के लिए इंटेंट का रेफ़रंस दस्तावेज़ देखें.
स्टेटस के जवाब
आपके QUERY
और EXECUTE
जवाबों में, अनुरोध के नतीजे की जानकारी देने के लिए एक status
फ़ील्ड शामिल होता है. हर स्टेटस रिस्पॉन्स में इनमें से कोई एक वैल्यू दी जा सकती है:
SUCCESS
: अनुरोध पूरा हो गया.OFFLINE
: टारगेट डिवाइस ऑफ़लाइन है या उससे संपर्क नहीं हो पा रहा है.EXCEPTIONS
: अनुरोध से जुड़ी कोई समस्या या चेतावनी है.ERROR
:errorCode
के लिए अनुरोध पूरा नहीं किया जा सका.
ERROR
और EXCEPTIONS
के बारे में ज़्यादा जानने के लिए, गड़बड़ियों और अपवादों को मैनेज करना और
गड़बड़ियां और अपवाद लेख पढ़ें.