
How do I subscribe to all topics of a MQTT broker
Oct 2, 2015 · I want to connect a client which will monitor all the topics of the broker to respond to the events when I don't know what are names of topic.
Paho MQTT "Unsupported callback API version" error
Feb 12, 2024 · client = mqtt_client.Client(mqtt_client.CallbackAPIVersion.VERSION1, client_id) This will configure the library to use the v1 callback API (as used with older versions of the library). I would …
HAOS: Adding my own MQTT broker will not connect
Jan 22, 2025 · Edited to add: I can also establish that connections ARE occurring between HAOS and my MQTT broker. Logs on the MQTT side indicate that the Paho MQTT client from HAOS sends a …
IoT: do I need to use MQTT or HTTP? - Stack Overflow
May 19, 2017 · MQTT is intended for situations where your connection may be intermittent or otherwise unreliable. Its various Quality-of-Service levels provide you with significant ways of ensuring that data …
Mosquitto MQTT: "Connection was lost" error when publishing a …
May 5, 2025 · I am trying to test MQTT functionality and have installed Eclipse Mosquitto on my workstation. To subscribe to a topic, I use the following command: "C:\\Program …
What are advantages of MQTT over TCP/IP? Since MQTT is based on …
Aug 7, 2019 · Is there any advantages of MQTT that makes it better solution than the TCP/IP protocol? Yes, it offers things TCP doesn't offer, namely an application layer protocol.
mqtt - How to test the `Mosquitto` server? - Stack Overflow
Nov 3, 2014 · I am new to Mosquitto and MQTT, I downloaded the Mosquitto server library but I do not know how to test it. Is there any way to test the Mosquitto server?
Subscribing MQTT topics with wildcards - Stack Overflow
Jul 30, 2019 · I have a MQTT client that wants to subscribe to the following topics node1/data/updates node1/data/delta node1/data Of course I have multiple nodes, so I have to use wildcards as …
MQTT "invalid protocol version" error with Ubuntu, mosquitto, and …
Jan 6, 2024 · I'm currently working on an MQTT project using an NVIDIA Jetson running Ubuntu 18.04. I have installed mosquitto (version 2.0.15) as my MQTT broker and paho-mqtt (version 1.6.1) for my …
mqtt - Request all published topics - Stack Overflow
Mar 2, 2017 · I'm not saying I want to subscribe to everything. I'm just seeking to request all published topics. For instance, the broker could just response with an string array containing all the published …