ServiceStack Javascript JsonServiceClient missing properties
问题 I am trying to connect to a JWT authenticated service using the Servicestack JsonServiceClient, however the Docs only describe how to do this using the C# client: http://docs.servicestack.net/jwt-authprovider In these docs, it indicates there should be a BearerToken property on the client like so: var client = new JsonServiceClient(baseUrl) { BearerToken = jwtToken }; However this seems to be missing on the Javascript Client. How can I assign the jwtToken when using the Javascript client? I