Where is the entry for the POST or PUT payloads of the CoAP Request node?
This is not the right place to ask. Post your question on github instead. Although it does not seem to be updated anymore.
Hi Nick,
The documentation is not very clear, but I just figured it out by debugging my IoT motes:
- Add a function node before the coap node and type:
msg.url = "coap://<url>/"
msg.payload = "<Payload_goes_here>";
msg.method = "POST";
return msg;
- Don't write anything directly in the coap node
Thanks