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:/
Victory!
My mistake was the header name. It's not "Authentication" it's "Authorization".
So this works:
this.client.headers.append("Authorization" , "Bearer " + jwtToken,);