Update examples README file Change-Id: I932438d8ad602ebf4a5e039feb73d9a38b96d572 Reviewed-on: https://weave-review.googlesource.com/2089 Reviewed-by: Alex Vakulenko <avakulenko@google.com>
diff --git a/examples/daemon/README b/examples/daemon/README index ef52a47..feb57a7 100644 --- a/examples/daemon/README +++ b/examples/daemon/README
@@ -78,22 +78,20 @@ Send Command to the Daemon -------------------------- - go to the oauthplayground used for registration ticket command - in "Step 3", send base.identify with + in "Step 3", send command with HTTP Method: POST Request URI: https://www.googleapis.com/weave/v1/commands Enter request body: { "deviceId": "0f8a5ff5-1ef0-ec39-f9d8-66d1caeb9e3d", - "name": "_sample._hello", - "parameters": { "_name": "cloud user" } + "name": "_sample.hello", + "component": "sample", + "parameters": { "name": "cloud user" } } "Send the request", you command will be "queued" as its "state" - - verify the command execution with weave daemon - in terminal running the daemon, observe something similar to - New command '_sample._hello' arrived, ... - received command: _sample._hello - _sample._hello command: finished + - verify the command execution observing daemon console logs + - verify the command history with oauthplayground Similar to "Acquire Registration Ticket" section in this document, except in "step 3", do: @@ -104,9 +102,5 @@ "Send the request", you get all of the commands executed on your device, find something like "kind": "weave#command", - "name": "_sample._hello", - "results": { - "_reply": "Hello cloud user" - }, + "name": "_sample.hello", ... -