Bases: keystoneclient.base.Resource
Bases: keystoneclient.base.CrudManager
Manager class for manipulating identity OAuth access tokens.
alias of AccessToken
Bases: keystoneclient.auth.identity.v3.base.AuthMethod
OAuth based authentication method.
Parameters: |
---|
Bases: keystoneclient.base.Resource
Represents an OAuth consumer.
Bases: keystoneclient.base.CrudManager
Manager class for manipulating identity consumers.
Bases: object
Act as a proxy manager in case oauthlib is no installed.
This class will only be created if oauthlib is not in the system, trying to access any of the attributes in name (access_tokens, consumers, request_tokens), will result in a NotImplementedError, and a message.
>>> manager.access_tokens.blah
NotImplementedError: To use 'access_tokens' oauthlib must be installed
Otherwise, if trying to access an attribute other than the ones in name, the manager will state that the attribute does not exist.
>>> manager.dne.blah
AttributeError: 'OAuthManagerOptionalImportProxy' object has no
attribute 'dne'
Bases: keystoneclient.base.Resource
Bases: keystoneclient.base.CrudManager
Manager class for manipulating identity OAuth request tokens.
Authorize a request token with specific roles.
Utilize Identity API operation: PUT /OS-OAUTH1/authorize/$request_token_id
Parameters: |
|
---|
alias of RequestToken
Parse the URL response body to retrieve the oauth token key and secret.
The response body will look like: ‘oauth_token=12345&oauth_token_secret=67890’ with ‘oauth_expires_at=2013-03-30T05:27:19.463201’ possibly there, too.