我正在尝试使用 Web 套接字客户端 API 建立连接。为了建立连接,需要传递一个“播放会话”cookie 来验证用户。
以下是我的代码:
async def streaming_data(url, play_session):
try:
async with websockets.connect(url) as websocket:
response = await websocket.recv()
data = reponse.read()
except Exception as e:
print('Error in making the Websocket Connection!!')
print(e.args)
print(data)
注意:播放会话是 cookie。
我收到错误消息:“状态代码不在 101:403 中”我正在使用 websockets 库进行连接。
我是初学者,所以任何帮助将不胜感激。