Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
websockets help :/
#4
(Feb-12-2021, 09:32 PM)nilamo Wrote: I connected to it using wscat (a command line utility to interact with websocket servers), and didn't get any output at all. This might not be a python issue. You might need to send a message before the server will send anything to you.

hello,

i tried a different website, still can't make it to work, i get no response back after sending "5"

import asyncio
import websockets
import re



async def main():
    uri = f'wss://strangermeetup.com/socket.io/?lang=en&userId=413fcf79-3837-4608-b29d-ace29f84d3fe&client=web&EIO=3&transport=websocket&sid='
    async with websockets.connect(uri=uri) as websocket:

        
        msg = await websocket.recv()
        rec_msg = re.findall('sid":"(.*?)"', msg)[0]
        
        
        async with websockets.connect(uri=f'wss://strangermeetup.com/socket.io/?lang=en&userId=413fcf79-3837-4608-b29d-ace29f84d3fe&client=web&EIO=3&transport=websocket&sid=' + rec_msg) as websocket2:
            await websocket2.send('2probe')
            print(await websocket2.recv())
            await websocket2.send('5')
            print(await websocket2.recv())
        

asyncio.get_event_loop().run_until_complete(main())
Reply


Messages In This Thread
websockets help :/ - by kimblee - Feb-07-2021, 02:01 PM
RE: websockets help :/ - by kimblee - Feb-11-2021, 01:06 PM
RE: websockets help :/ - by nilamo - Feb-12-2021, 09:32 PM
RE: websockets help :/ - by kimblee - Feb-15-2021, 01:26 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Listen TCP and send data to websockets neoboby 3 3,050 Feb-13-2023, 09:47 PM
Last Post: Vadanane
  Asyncio | Websockets - general problem starting the server dreamer 5 3,286 Oct-26-2022, 11:55 AM
Last Post: dreamer
  Slow websockets server -> client pattagghiu 0 2,415 Sep-17-2019, 09:28 AM
Last Post: pattagghiu
  Flask and Websockets == True? rxndy 2 2,842 Apr-21-2019, 04:08 PM
Last Post: rxndy
  Send Pressure sensor data to IoT platform using WebSockets in Python barry76 3 4,660 Mar-12-2019, 09:48 AM
Last Post: barry76

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020