Python WebSocket
Publish with Python
How to subscribe? see here
Use the following code snippet to publish a message/event on a WebSocket Channel Room with Python.
import requests
import json
url = "https://CLUSTER_ID.piesocket.com/api/publish"
payload = json.dumps({
"key": "oCdCMcMPQpbvNjUIzqtvF1d2X2okWpDQj4AwARJuAgtjhzKxVEjQU6IdCjwm", #Demo key, get yours at https://piesocket.com
"secret": "d8129f82f8dd71910aa4a7efa30a7297", #Demo secret, get yours at https://piesocket.com
"roomId": 1,
"message": {"event":"new-message","data":"Hello"}
});
headers = {
'Content-Type': 'application/json'
}
response = requests.request("POST", url, headers=headers, data = payload)
print(response.text.encode('utf8'))
This sends a JSON message to WebSocket Room 1, to send a string, replace message: { "text": "Hello world!" } with message: "Hello world!"
Please note that this example uses a demo key and secret, which is public. The demo key is only for quick testing purposes, and you should not use this in your application.
You can get your free API key and API secret here.
