def __init__(self, name, attrs=None, realm=None, storage=None, oauth_key=None, oauth_secret=None, oauth_scope=None): """Handle Google Auth This also handles making an OAuth request during the OpenID authentication. """ OpenIDConsumer.__init__(self, name, 'google', realm, storage, context=GoogleAuthenticationComplete) self.oauth_key = oauth_key self.oauth_secret = oauth_secret self.oauth_scope = oauth_scope if attrs is not None: self.openid_attributes = attrs
def __init__(self, name, attrs=None, realm=None, storage=None): """Handle Google Auth This also handles making an OAuth request during the OpenID authentication. """ OpenIDConsumer.__init__(self, name, 'steam_openid', realm, storage) if attrs is not None: self.openid_attributes = attrs
def __init__(self, name, realm=None, storage=None, oauth_key=None, oauth_secret=None): """Handle Yahoo Auth This also handles making an OAuth request during the OpenID authentication. """ OpenIDConsumer.__init__(self, name, 'yahoo', realm, storage, context=YahooAuthenticationComplete) self.oauth_key = oauth_key self.oauth_secret = oauth_secret
def __init__(self, name, attrs=None, realm=None, storage=None, oauth_key=None, oauth_secret=None, oauth_scope=None): """Handle Google Auth This also handles making an OAuth request during the OpenID authentication. """ OpenIDConsumer.__init__(self, name, realm, storage, context=GoogleAuthenticationComplete) self.oauth_key = oauth_key self.oauth_secret = oauth_secret self.oauth_scope = oauth_scope if attrs is not None: self.openid_attributes = attrs
def __init__(self, name, realm=None, storage=None, oauth_key=None, oauth_secret=None): """Handle Yahoo Auth This also handles making an OAuth request during the OpenID authentication. """ OpenIDConsumer.__init__(self, name, realm, storage, context=YahooAuthenticationComplete) self.oauth_key = oauth_key self.oauth_secret = oauth_secret