You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

MQTT Engine Custom Namespaces do not handle changing JSON structures automatically due to the way JSON payloads are parsed.

Consider these two message payloads received sequential on topic "a/b" at MQTT Engine:

{
    "level": "value1"
}

{
    "level": {
        "key": "value2"
    }
}


  • No labels