Message
Send a meshblu message
Send a message to one or more devices in meshblu
var ws = new WebSocket("wss://meshblu.octoblu.com/ws/v2");
ws.send(JSON.stringify([
"message",
{
"devices":["26de691f-8068-4cdc-907a-4cb5961a1aba"],
"topic":"status",
"payload":{
"online":true
}
}
]));
Broadcast Messages
Broadcast messages are sent to
devices:["*"]
and will be sent to anyone who is subscribed to your device
Updated less than a minute ago