SOLVED
How to auth to wasteof socketio?
Sample code maybe (js code also will be fine)
My current code: connects to API but idk where and how to authenticate (I have token/session)
import os
os.system("pip install python-socketio[client]")
os.system("clear")
import socketio
sio = socketio.Client()
@sio.event
def dsconnect(data):
print('I received a message!')
print(data)
@sio.on('updateMessageCount')
def on_message(data):
print('I received a message!')
print(data)
@sio.event
def connect():
print("I'm connected!")
#sio.emit('login', {'Authorization': api.token})
sio.connect("https://api.wasteof.money/")
if you use requests:
connect = requests.get('api.wasteof.money/messages', headers={'Authorization': api.token})
idk what to do for socket bc I’ve never used but the auth token needs to be in the header
so maybe
sio.connect('https://api.wasteof.money', headers={'Authorization': api.token})
Not working