Try to Understand. I want to make an api that can use multiple Api websoockets. So that user can select the api to use for data gathering. Hence, I don't wanna code around your API but python websocket instead. The way that you've provided in the java web socket expamples
infFullMode= { "a": "mode", "v": ["full", [408065]] }
# web.send(str(infosys))
with connect(url) as websocket:
websocket.send(str(infFullMode))
message = websocket.recv()
print(message)
It just returned this json:
{"type": "instruments_meta", "data": {"count": 101874, "etag": "--redacted text to avoid any exposure---""}}
I want to get the final json that is depicted in the API Websocket documentation page.
Any leads?
Thanks for any help