CoAP Request Node - Where to input the POST payload?

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.

@bakman2 it is perfectly reasonable to ask here. Whether anyone here has experience of that node is another matter.

@ahmed.ms does the node's help in the info sidebar not provide that information?

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