Hello,
I m trying to send a mqtt message from board to AllThingsTalk platform. The sequence of my commands is :
1.AT+UMQTT=1,1883 (Set local port for Mqtt broker)
2.AT+UMQTT=2,“api.allthingstalk.io” (set the server name)
3.AT+UMQTT=4,“myusername”,“mypassword” (username is the DeviceToke and password a random one)
4.AT+UMQTTWTOPIC=0,0,“device/LT6Dp0kWzuY1mCAslgNEtFHw/asset/Temperature/state” (Set the topic)
5.AT+UMQTTC=2,0,0,“device/LT6Dp0kWzuY1mCAslgNEtFHw/asset/Temperature/state”,"{“value”: “25”}" (Publish a message to my topic)
The response of last command is +UMQTTC: 2,0 OK
So the message dont send it.
My mqtt broker is running fine. i tested it by sending a message through terminal.
Does anyone know why cannot send this mqtt message?
Thank you very much