Hello,
I have got a problem with WS userdata stream response. I want understand the problem, but need first step.
I am acting with Testnet and all Userdata streams responses comes fine in. E.g.:
WSMessage(type=<WSMsgType.TEXT: 1>, data='{"e":"outboundAccountPosition","E":1743520170814,"u":1743520170814,"B":[{"a":"BTC","f":"1.09830000","l":"0.00000000"},{"a":"USDT","f":"1680.40258670","l":"0.00000000"}]}', extra='')
But there seems be an issue with extra=‘’
data='{"error":{"code":3,"msg":"Invalid JSON: trailing characters at line 1 column 476"}}', extra='')
I don’t know where this problem comes from. Code seems ok:
async def userdatastream(listenkey: str) -> dict:
url = f'{base_websocket}/ws/{listenkey}'
try:
async with aiohttp.ClientSession() as session:
async with session.ws_connect(url) as ws:
async for msg in ws:
if msg.type == aiohttp.WSMsgType.TEXT:
print("userdatastream msg raw: ", msg)
# msg_handle()
if msg.data == 'close cmd':
await ws.close()
break
else:
await ws.send_str(msg.data + '/answer')
elif msg.type == aiohttp.WSMsgType.ERROR:
print('Websocket error', msg)
break
elif msg.type == aiohttp.WSMsgType.CLOSED:
print('Websocked closed:', msg)
except Exception as e:
print('Websocket error: ' ,e)