Last Updated on : 2024-06-20 07:48:19
A cloud project provides the message subscription feature. If the device status in the project changes, such as registration, data reporting, and offline events, Message Service is used to actively push event data to external partners with Pulsar. This helps to implement real-time and persistent messages.
Currently, Tuya Smart Message Service is customized and modified based on open source Pulsar. The Pulsar SDK for Python is provided.
In this topic, the Python development tool PyCharm is used to receive messages.
Click Pulsar SDK to download the package to the local computer and decompress the package.
Use PyCharm to open the source code project: Click Open to find the downloaded and decompressed file in the previous step.
Add dependency environment.
Note: The Python version for PC used in this topic is 3.8.
View dependency package.
Click PyCharm > Preferences on the top navigation bar to view the project environment at Project:python > Python Interpreter.
Modify the parameters in the example/index.js file. This topic takes the test channel as an example.
# accessId, accessKey, serverUrl, MQ_ENV
ACCESS_ID = "xt*****ff**n1****8ufo"
ACCESS_KEY = "479bcb7345******582d9c******4ef7"
WSS_SERVER_URL = "wss://mqe.tuyacn.com:8285/"
MQ_ENV = MQ_ENV_PROD
The parameters are described as follows.
ACCESS_ID
: Enter the value of Access ID in the Authorization Key section.
ACCESS_KEY
: Enter the value of Access Secret in the Authorization Key section.
WSS_SERVER_URL
: Choose the endpoints according to your location.
MQ_ENV
: message subscription channel.
MQ_ENV_PROD
represents the formal environment.MQ_ENV_TEST
represents the test environment.Configure a test device.
On the page of Message Service, after your subscription is ready, Subscribed appears in the Status column. Click the Message Test tab.
Enter the associated device ID in the search box, click the magnifier icon, and then double-click the selected device.
If an associated device is set as a test device, the message reported by it will be sent to the test channel for you to debug device functions.
On the development tool PyCharm, right-click the pythonWssConsumerDemo.py file and select RUN to run it.
Control the device with a mobile app.
Automatically get the push messages on PyCharm.
For more information about field descriptions, see Data format description and usage notice.
Received message
received message origin payload: {"data":"5dBU8WiRS1+zydoFTtaVKuL+DnRGSSj1VvrRH4pN1kvawIq2mG/fZTd9TCimqpGPzQtf9wFhkSQ6IBE2P3yYPj6CrsqFEQvL9PFeHpD9Z9KadznFwSQX6sgRa2f2ANFHDTC8pZ0+fLnWge7AqPG4LdxobOPC7kNpk92hmXjB0PEOZ2Du4MbP4NSN49QcJ4MPoKVOkbMxkxYUbynUW5fQ6FgHYZYcTUp+a0vF/oS3VL3jGH5tallpI10RZxofJ72f","protocol":4,"pv":"2.0","sign":"b8a548131304b49b524fca193f9ffd63","t":1630979005761}
Parse payload data
decryptContentData={"dataId":"fe3a7d80-0f7c-11ec-8511-024283c73485","devId":"vdev******86991","productKey":"na****jz","status":[{"1":"true","code":"switch_led","t":1630979005725,"value":true}]}
Note: For more information about the data parsing method, see Data signing. The payload decryption method has been encapsulated in the SDK.
Received message
received message origin payload: {"data":"z/xrNsO26LmxprqP0OaMSXdSXy2jAEiz0blUCnlUZe7awIq2mG/fZTd9TCimqpGPzQtf9wFhkSQ6IBE2P3yYPj6CrsqFEQvL9PFeHpD9Z9KadznFwSQX6sgRa2f2ANFHDTC8pZ0+fLnWge7AqPG4LSlV4VEv7NtZ0T9wsM0xsQe+Gd3lcDRjtoWkeHTaIhvNzw8Y01IymwbZVRlVvpO3bLeIRohJoYtnI0lpflt6tcoKE7H3tlNNyLhx/y903ldy7z0o3iD5KROUiGtsAvdO0WfAsVxl87x4EbH6A7FLPOR2vyfiUckMP3+KlQR/CA6UtuuExvaaSNCeSx8NL2Rpmw==","protocol":4,"pv":"2.0","sign":"7ce23e6fb11386020cc4a58524cf2a4e","t":1630979195061}
Parse the data
decryptContentData={"dataId":"6f0f12a7-0f7d-11ec-8511-024283c73485","devId":"vdev******86991","productKey":"na****jz","status":[{"2":"white","code":"work_mode","t":1630979195023,"value":"white"},{"3":"764","code":"bright_value_v2","t":1630979195023,"value":764}]}
Is this page helpful?
YesFeedbackIs this page helpful?
YesFeedback