keystone-oauth2-extension
keystone-oauth2-extension copied to clipboard
OpenStack Keystone extension to enable OAuth 2.0
Is there any way to invoke /v3/OS-OAUTH2/authorize without provide a x-auth-token in the request? I'm expecting that a third app could invoke keystone by GET ``` GET /v3/OS-OAUTH2/authorize?client_id=${CONSUMER_ID}&redirect_uri=https%3A%2F%2my_app%2Fauthorize&response_type=code&scope=AAA&state=XXX" ``` but...
In current implementation User-agent gets context object through admin_token_auth, which is a temporary token authentication mechanism. This definitely doesn't suite the production deployment case. @controller.protected() def request_authorization_code(self, context): control comes...