auth
auth copied to clipboard
added jwt token to json response
I added jwt token to json response.
Sample javascript client.
let response = fetch(protectedUrl, {
headers: {
Authentication: 'tokenxyz',
ContentType: 'application/json',
Accept: 'application/json',
}
});