aboutsummaryrefslogtreecommitdiff
path: root/examples/daemon/README
diff options
context:
space:
mode:
Diffstat (limited to 'examples/daemon/README')
-rw-r--r--examples/daemon/README20
1 files changed, 7 insertions, 13 deletions
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 @@ Register device to cloud
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 Command to the Daemon
"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",
...
-