class documentation

class OAuth2FlowNoRedirectResult(object): (source)

Known subclasses: dropbox.oauth.OAuth2FlowResult

View In Hierarchy

Authorization information for an OAuth2Flow performed with no redirect.

Method __init__ :param str access_token: Token to be used to authenticate later requests. :param str account_id: The Dropbox user's account ID. :param str user_id: Deprecated (use :attr:`account_id` instead). :param str refresh_token: Token to be used to acquire new access token when existing one expires...
Method __repr__ Undocumented
Instance Variable access_token Undocumented
Instance Variable account_id Undocumented
Instance Variable expires_at Undocumented
Instance Variable refresh_token Undocumented
Instance Variable scope Undocumented
Instance Variable user_id Undocumented
def __init__(self, access_token, account_id, user_id, refresh_token, expiration, scope): (source)

:param str access_token: Token to be used to authenticate later requests. :param str account_id: The Dropbox user's account ID. :param str user_id: Deprecated (use :attr:`account_id` instead). :param str refresh_token: Token to be used to acquire new access token when existing one expires. :param expiration: Either the number of seconds from now that the token expires in or the datetime at which the token expires. :type expiration: int or datetime :param list scope: List of scopes to request in base oauth flow.

def __repr__(self): (source)

Undocumented

access_token = (source)

Undocumented

account_id = (source)

Undocumented

expires_at = (source)

Undocumented

refresh_token = (source)

Undocumented

Undocumented

Undocumented