示例#1
0
 def __init__(self, client_get, client_authn_factory=None, conf=None):
     Service.__init__(self,
                      client_get,
                      client_authn_factory=client_authn_factory,
                      conf=conf)
     self.pre_construct.append(self.cc_pre_construct)
     self.post_construct.append(self.cc_post_construct)
 def __init__(self, client_get, client_authn_factory=None, conf=None):
     Service.__init__(self, client_get,
                      client_authn_factory=client_authn_factory,
                      conf=conf)
     self.pre_construct = [self.get_id_token_hint,
                           self.add_post_logout_redirect_uri,
                           self.add_state]
示例#3
0
    def __init__(self, client_get, client_authn_factory=None,
                 conf=None, rel='', **kwargs):
        Service.__init__(self, client_get,
                         client_authn_factory=client_authn_factory,
                         conf=conf, **kwargs)

        self.rel = rel or OIC_ISSUER
 def __init__(self, client_get, client_authn_factory=None, conf=None):
     Service.__init__(self,
                      client_get,
                      client_authn_factory=client_authn_factory,
                      conf=conf)
     self.pre_construct.extend(
         [pre_construct_pick_redirect_uri, set_state_parameter])
     self.post_construct.append(self.store_auth_request)
示例#5
0
 def __init__(self, client_get, client_authn_factory=None, conf=None):
     Service.__init__(self,
                      client_get,
                      client_authn_factory=client_authn_factory,
                      conf=conf)
     self.pre_construct = [
         self.add_client_behaviour_preference,
         #add_redirect_uris,
         add_callback_uris,
         add_jwks_uri_or_jwks
     ]
     self.post_construct = [self.oidc_post_construct]
 def __init__(self, client_get, client_authn_factory=None, conf=None):
     Service.__init__(self,
                      client_get,
                      client_authn_factory=client_authn_factory,
                      conf=conf)
 def __init__(self, client_get, client_authn_factory=None, conf=None):
     Service.__init__(self,
                      client_get,
                      client_authn_factory=client_authn_factory,
                      conf=conf)
     self.pre_construct = [self.oidc_pre_construct]