You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 26, 2023. It is now read-only.
Is it possible to receive the messages sent to a service via a TCP socket and a simple Python script?
I've tried using the script in this page + this code for subscription, but it didn't work (invalid UUID error):
#!/usr/bin/env python
from uuid import uuid4
from socket import socket, AF_INET, SOCK_STREAM
from json import loads as json_decode
import logging
import json
uuid = uuid4() # this device ID (random generated)
uuid = str(uuid).upper()
print("geneated uuid=" + str(uuid))
server = 'api.pushjet.io'
port = 7171
import requests
r = requests.post('https://api.pushjet.io/subscription', params={ 'uuid': '\''+str(uuid)+'\'', 'service': MY_SERVICE_ID })
print(r.status_code)
if(r.status_code!=200):
print("subscription error: " + str(r.status_code))
exit (1)
else:
print(str(r.json()))
print("Connecting as {} to {}:{}".format(uuid, server, port))
pj_sock = socket(AF_INET, SOCK_STREAM)
pj_sock.connect((server, port))
pj_sock.send(bytes(uuid))
... # the rest it's the same as the script here http://docs.pushjet.io/docs/tcp
The text was updated successfully, but these errors were encountered:
thank you for the tip, now it subscribes correctly, but after that it is not receiving the messages i sent via curl (while the android app is receiving them just fine)
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Is it possible to receive the messages sent to a service via a TCP socket and a simple Python script?
I've tried using the script in this page + this code for subscription, but it didn't work (invalid UUID error):
The text was updated successfully, but these errors were encountered: