action dweet_listen_for_dweets { label: "Listen for dweets from a thing." description: "Sorry, this function uses HTTP chunked responses and cannot be tested here. Try something like:
curl --raw https://dweet.io/listen/for/dweets/from/{thing}"
provider: dweet
method: GET
path: "/listen/for/dweets/from/{thing}"
encoding: json
input: {
type: "object"
properties: {
thing: {
type: "string"
}
}
required: ["thing"]
additionalProperties: false
}
output: {
type: "object"
additionalProperties: true
}
}