Microservices - Authentication and Authorization
Consider this simplified code snippet for service-to-service authentication using JWT:
token = auth_server.issue_token(service_id="serviceA")
if auth_server.verify_token(token):
print("Access granted")
else:
print("Access denied")
What will be printed if the token is valid?