oauth2client.client
index
/home/jcgregorio/projects/apiary/oauth2client/client.py

An OAuth 2.0 client
 
Tools for interacting with OAuth 2.0 protected
resources.

 
Modules
       
copy
datetime
httplib2
logging
simplejson
urllib
urlparse

 
Classes
       
__builtin__.object
Credentials
OAuth2Credentials
Flow
OAuth2WebServerFlow
exceptions.Exception(exceptions.BaseException)
Error
MissingParameter
RequestError

 
class Credentials(__builtin__.object)
    Base class for all Credentials objects.
 
Subclasses must define an authorize() method
that applies the credentials to an HTTP transport.
 
  Methods defined here:
authorize(self, http)
Take an httplib2.Http instance (or equivalent) and
authorizes it for the set of credentials, usually by
replacing http.request() with a method that adds in
the appropriate headers and then delegates to the original
Http.request() method.

Data descriptors defined here:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

 
class Error(exceptions.Exception)
    Base error for this module.
 
 
Method resolution order:
Error
exceptions.Exception
exceptions.BaseException
__builtin__.object

Data descriptors defined here:
__weakref__
list of weak references to the object (if defined)

Methods inherited from exceptions.Exception:
__init__(...)
x.__init__(...) initializes x; see x.__class__.__doc__ for signature

Data and other attributes inherited from exceptions.Exception:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T

Methods inherited from exceptions.BaseException:
__delattr__(...)
x.__delattr__('name') <==> del x.name
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__getitem__(...)
x.__getitem__(y) <==> x[y]
__getslice__(...)
x.__getslice__(i, j) <==> x[i:j]
 
Use of negative indices is not supported.
__reduce__(...)
__repr__(...)
x.__repr__() <==> repr(x)
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value
__setstate__(...)
__str__(...)
x.__str__() <==> str(x)
__unicode__(...)

Data descriptors inherited from exceptions.BaseException:
__dict__
args
message

 
class Flow(__builtin__.object)
    Base class for all Flow objects.
 
  Data descriptors defined here:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

 
class MissingParameter(Error)
    
Method resolution order:
MissingParameter
Error
exceptions.Exception
exceptions.BaseException
__builtin__.object

Data descriptors inherited from Error:
__weakref__
list of weak references to the object (if defined)

Methods inherited from exceptions.Exception:
__init__(...)
x.__init__(...) initializes x; see x.__class__.__doc__ for signature

Data and other attributes inherited from exceptions.Exception:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T

Methods inherited from exceptions.BaseException:
__delattr__(...)
x.__delattr__('name') <==> del x.name
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__getitem__(...)
x.__getitem__(y) <==> x[y]
__getslice__(...)
x.__getslice__(i, j) <==> x[i:j]
 
Use of negative indices is not supported.
__reduce__(...)
__repr__(...)
x.__repr__() <==> repr(x)
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value
__setstate__(...)
__str__(...)
x.__str__() <==> str(x)
__unicode__(...)

Data descriptors inherited from exceptions.BaseException:
__dict__
args
message

 
class OAuth2Credentials(Credentials)
    Credentials object for OAuth 2.0
 
Credentials can be applied to an httplib2.Http object
using the authorize() method, which then signs each
request from that object with the OAuth 2.0 access token.
 
OAuth2Credentials objects may be safely pickled and unpickled.
 
 
Method resolution order:
OAuth2Credentials
Credentials
__builtin__.object

Methods defined here:
__getstate__(self)
Trim the state down to something that can be pickled.
__init__(self, access_token, client_id, client_secret, refresh_token, token_expiry, token_uri, user_agent)
Create an instance of OAuth2Credentials
 
This constructor is not usually called by the user, instead
OAuth2Credentials objects are instantiated by
the OAuth2WebServerFlow.
 
Args:
  token_uri: string, URI of token endpoint
  client_id: string, client identifier
  client_secret: string, client secret
  access_token: string, access token
  token_expiry: datetime, when the access_token expires
  refresh_token: string, refresh token
  user_agent: string, The HTTP User-Agent to provide for this application.
 
 
Notes:
  store: callable, a callable that when passed a Credential
    will store the credential back to where it came from.
    This is needed to store the latest access_token if it
    has expired and been refreshed.
__setstate__(self, state)
Reconstitute the state of the object from being pickled.
authorize(self, http)
Args:
   http: An instance of httplib2.Http
       or something that acts like it.
 
Returns:
   A modified instance of http that was passed in.
 
Example:
 
  h = httplib2.Http()
  h = credentials.authorize(h)
 
You can't create a new OAuth
subclass of httplib2.Authenication because
it never gets passed the absolute URI, which is
needed for signing. So instead we have to overload
'request' with a closure that adds in the
Authorization header and then calls the original version
of 'request()'.
set_store(self, store)
Set the storage for the credential.
 
Args:
  store: callable, a callable that when passed a Credential
    will store the credential back to where it came from.
    This is needed to store the latest access_token if it
    has expired and been refreshed.

Data descriptors inherited from Credentials:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

 
class OAuth2WebServerFlow(Flow)
    Does the Web Server Flow for OAuth 2.0.
 
OAuth2Credentials objects may be safely pickled and unpickled.
 
 
Method resolution order:
OAuth2WebServerFlow
Flow
__builtin__.object

Methods defined here:
__init__(self, client_id, client_secret, scope, user_agent, authorization_uri='https://www.google.com/accounts/o8/oauth2/authorization', token_uri='https://www.google.com/accounts/o8/oauth2/token', **kwargs)
Constructor for OAuth2WebServerFlow
 
Args:
  client_id: string, client identifier
  client_secret: string client secret
  scope: string, scope of the credentials being requested
  user_agent: string, HTTP User-Agent to provide for this application.
  authorization_uri: string, URI for authorization endpoint
  token_uri: string, URI for token endpoint
  **kwargs: dict, The keyword arguments are all optional and required
                    parameters for the OAuth calls.
step1_get_authorize_url(self, redirect_uri='oob')
Returns a URI to redirect to the provider.
 
Args:
  redirect_uri: string, Either the string 'oob' for a non-web-based
                application, or a URI that handles the callback from
                the authorization server.
 
If redirect_uri is 'oob' then pass in the
generated verification code to step2_exchange,
otherwise pass in the query parameters received
at the callback uri to step2_exchange.
step2_exchange(self, code)
Exhanges a code for OAuth2Credentials.
 
Args:
  code: string or dict, either the code as a string, or a dictionary
    of the query parameters to the redirect_uri, which contains
    the code.

Data descriptors inherited from Flow:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

 
class RequestError(Error)
    Error occurred during request.
 
 
Method resolution order:
RequestError
Error
exceptions.Exception
exceptions.BaseException
__builtin__.object

Data descriptors inherited from Error:
__weakref__
list of weak references to the object (if defined)

Methods inherited from exceptions.Exception:
__init__(...)
x.__init__(...) initializes x; see x.__class__.__doc__ for signature

Data and other attributes inherited from exceptions.Exception:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T

Methods inherited from exceptions.BaseException:
__delattr__(...)
x.__delattr__('name') <==> del x.name
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__getitem__(...)
x.__getitem__(y) <==> x[y]
__getslice__(...)
x.__getslice__(i, j) <==> x[i:j]
 
Use of negative indices is not supported.
__reduce__(...)
__repr__(...)
x.__repr__() <==> repr(x)
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value
__setstate__(...)
__str__(...)
x.__str__() <==> str(x)
__unicode__(...)

Data descriptors inherited from exceptions.BaseException:
__dict__
args
message

 
Data
        __author__ = 'jcgregorio@google.com (Joe Gregorio)'

 
Author
        jcgregorio@google.com (Joe Gregorio)