Raw (TCP/UDP/TLS/DTLS)
Some IoT devices could even send a raw payload to the server which is simply a binary UDP/TCP payload. IoTIFY also enables you to provide such payload with ease.
Last updated
Was this helpful?
Some IoT devices could even send a raw payload to the server which is simply a binary UDP/TCP payload. IoTIFY also enables you to provide such payload with ease.
Last updated
Was this helpful?
Was this helpful?
{
payload = [10,20,44,46]
return new Buffer.from(payload);
} let payload = new Buffer('Hello World', 'binary').toString('base64')
return payload;