Hi,
I'm not too much familiar with Python or cometD but I was trying my way out and when trying to implement the AuthExtension, for the outgoing function I'm getting this type error
TypeError: outgoing() takes 2 positional argument but 3 were given
Here is the code for that class
`class MyAuthExtension(AuthExtension):
async def incoming(payload, headers=None):
pass
async def outgoing(payload, headers):
pass
async def authenticate():
return <SOME_VALUE>`
Hi,
I'm not too much familiar with Python or cometD but I was trying my way out and when trying to implement the AuthExtension, for the outgoing function I'm getting this type error
Here is the code for that class
`class MyAuthExtension(AuthExtension):