Skip to content
This repository was archived by the owner on Jan 26, 2023. It is now read-only.

receiving messages from a TCP socket in Python #33

@eadmaster

Description

@eadmaster

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

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions