我正在使用websocket,并尝试解析响应对象。
websocket = create_connection(url, headers=self.headers)
while True:
try:
result = websocket.recv()
toJson = json.loads(result)
print(toJson)
except Exception as e:
print(e)
break
执行json.loads可以
Unterminated string starting at: line 1 column 16384 (char 16383)
我正在尝试从websocket recv中提取json响应。