Tinkerhub plugin for accessing things over HTTP.
When running tinkerhubd install via:
$ tinkerhubd install bridge-http
Currently its not possible to configure the server port and it always starts on port 10000.
List all the things that can be seen.
List all the things that matches the given tags. Tags are comma-separated,
so type:light,cap:dimmable
would be equivalent to calling
th.get('type:light', 'cap:dimmable')
in the normal API.
Call an action on all things matching the tags. This will call the action without any arguments.
Call an action on all things matching the tags. The body of the POST should be in an array in JSON format. The array represents the arguments to pass to the action.