Open
Description
Hi,
I've implemented authorization by passing access token through the query string param. But I also need a possibility to replace that token once it gets updated.
For now I'm able to achieve that by doing something veeery horrible:
(<any>this.connection)._jConnection.qs["access_token"] = token;
It would be nice to be able to do it in typescript-ish way :)