TOKEN-BASED AUTH MIDDLEWARE
This WSGI component:
- Verifies that incoming client requests have valid tokens by validating
tokens with the auth service.
- Rejects unauthenticated requests UNLESS it is in ‘delay_auth_decision’
mode, which means the final decision is delegated to the downstream WSGI
component (usually the OpenStack service)
- Collects and forwards identity information based on a valid token
such as user name, tenant, etc
Refer to: http://keystone.openstack.org/middlewarearchitecture.html