Microservices - Authentication and Authorization
Consider this code snippet in a microservice forwarding a JWT token:
fetch('http://serviceB/api', {
headers: { 'Authorization': req.headers['authorization'] }
})
What will happen if the original request has no Authorization header?