I can publish data to adafruit.io if I convert it to use HTTP.
I get similar results with mqtt https://www.npmjs.com/package/mqtt.
I can subscribe to feeds and receive data with mqtt.
- Code: Select all | TOGGLE FULL SIZE
mqtt sub -t 'doncoleman/feeds/button' -h 'io.adafruit.com' -v -u doncoleman -P secret
If I try and publish with mqtt, I don't get an error but the data never shows up.
- Code: Select all | TOGGLE FULL SIZE
mqtt pub -t 'doncoleman/feeds/button' -h 'io.adafruit.com'-u doncoleman -P secret -m '1'
Is there a good way to debug this and figure out where the messages are going?