Dear all
I need to send the DOWNLINK message to TTN to manage mcf88 Lora plug remotely. The payload is 04000100000000000000 to switch on the plug.
I tried 2 proposed solutions by HTTP and MQTT. Related commands are
For HTTP :
curl -X POST --data '{"dev_id":"plug1_mcf88","port":1,"confirmed":false,"payload_raw":"BAABAAAAAAAAAA=="}' https://integrations.thethingsnetwork.org/ttn-eu/api/v2/down/plug1_mcf88/plug1?key=ttn-account-v2.***thekeyofmyapplication
For MQTT :
mosquitto_pub -h eu.thethings.network -t "plug1_mcf88/devices/plug1-mcf88/down" -u "plug1_mcf88" -P "ttn-account-v2.***thekeyofmyapplication" -m {""payload_raw"" **:"BAABAAAAAAAAAA=="** }"
In both cases the command is going well. But in the data window of the device i don’t see any downlink appear. Only usual every minute uplink.
What can be the problem?
Thank you for your advice and help
With best regards, Ken