Receive data from javascript websocket #9344
Replies: 3 comments 3 replies
-
FWIW, the webrepl uses websockets with thr built-in websocket module. |
Beta Was this translation helpful? Give feedback.
-
I would recommend microdot as they recently introduced websockets, including an async version. Check out the simple example for a websocket echo server. https://github.com/miguelgrinberg/microdot/blob/main/examples/websocket/echo.py Also you are likely to have issues with SSL so maybe try and get it working with non ssl "ws:" first. |
Beta Was this translation helpful? Give feedback.
-
I'm a bit of a beginner at this but I got TCP socket communication working. Not sure if it's gonna help you but I'm using: Here's my receiving code:
|
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Hello everybody,
I am trying to receive some data from client side javascript (no node.js) but i can't make it work with the websocket libraries that i found
(
https://git.k-space.ee/lauri/micropython-skeleton/src/branch/master/uwebsockets.py ,
https://github.com/jczic/MicroWebSrv2
)
Here is the javascript code:
And the micropython code:
Of course i don't want to send a "Hello" message, this is just for testing purposes.
Even though i don't use any library for micropython websockets i receive some kind of data:
b'\x16\x03\x01\x02\x00\x01\x00\x01\xfc\x03\x03\x8bD\\\xe3\xcf@`\x7f\r\xb0D\xfb\x01\x03y\x16\x99\xd2\xd0\xd0(\x034\xa9\xf7f\x90F\x14\x06G# )\x999R\xacG\x9c\n\xfc,\xe3\xda\x04\xc0\x84\x9b\x1bTF4P\xc9\xc4\xa5\xd8 \xe1b\x017\x03}\x00 JJ\x13\x01\x13\x02\x13\x03\xc0+\xc0/\xc0,\xc00\xcc\xa9\xcc\xa8\xc0\x13\xc0\x14\x00\x9c\x00\x9d\x00/\x005\x01\x00\x01\x93\xda\xda\x00\x00\x00\x17\x00\x00\xff\x01\x00\x01\x00\x00\n\x00\n\x00\x08**\x00\x1d\x00\x17\x00\x18\x00\x0b\x00\x02\x01\x00\x00#\x00\x00\x00\x10\x00\x0b\x00\t\x08http/1.1\x00\x05\x00\x05\x01\x00\x00\x00\x00\x00\r\x00\x12\x00\x10\x04\x03\x08\x04\x04\x01\x05\x03\x08\x05\x05\x01\x08\x06\x06\x01\x00\x12\x00\x00\x003\x00+\x00)**\x00\x01\x00\x00\x1d\x00 _\x02_*\x8f$\x86\xda\x91N\x9ev8P\xabIvfj\x15#\xd2M^\xc5\xc0#\xe1\xedM\x1f\x1c\x00-\x00\x02\x01\x01\x00+\x00\x07\x06\xfa\xfa\x03\x04\x03\x03\x00\x1b\x00\x03\x02\x00\x02Di\x00\x05\x00\x03\x02h2zz\x00\x01\x00\x00\x15\x00\xe3\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'
Does anybody has any idea how i will be able to make this work? I feel that i am so close to finish this task, any kind of help could be really really helpful.
Thank you in advance.
Beta Was this translation helpful? Give feedback.
All reactions