Microservices - Authentication and Authorization
Given this pseudocode for API key validation:
function validateKey(request) {
key = request.headers['API-Key']
if key is null or key not in validKeys:
return 'Access Denied'
else:
return 'Access Granted'
}
What will be the output if the request has no 'API-Key' header?