当前位置: 首页>>代码示例>>Python>>正文


Python Consumer.discover方法代码示例

本文整理汇总了Python中oic.oic.consumer.Consumer.discover方法的典型用法代码示例。如果您正苦于以下问题:Python Consumer.discover方法的具体用法?Python Consumer.discover怎么用?Python Consumer.discover使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在oic.oic.consumer.Consumer的用法示例。


在下文中一共展示了Consumer.discover方法的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: test_provider_config

# 需要导入模块: from oic.oic.consumer import Consumer [as 别名]
# 或者: from oic.oic.consumer.Consumer import discover [as 别名]
    def test_provider_config(self):
        c = Consumer(None, None)
        mfos = MyFakeOICServer("http://example.com")
        mfos.keyjar = SRVKEYS
        c.http_request = mfos.http_request

        principal = "[email protected]"

        res = c.discover(principal)
        info = c.provider_config(res)
        assert isinstance(info, ProviderConfigurationResponse)
        assert _eq(info.keys(), ['registration_endpoint', 'jwks_uri',
                                 'check_session_endpoint',
                                 'refresh_session_endpoint',
                                 'register_endpoint',
                                 'subject_types_supported',
                                 'token_endpoint_auth_methods_supported',
                                 'id_token_signing_alg_values_supported',
                                 'grant_types_supported', 'user_info_endpoint',
                                 'claims_parameter_supported',
                                 'request_parameter_supported',
                                 'discovery_endpoint', 'issuer',
                                 'authorization_endpoint', 'scopes_supported',
                                 'require_request_uri_registration',
                                 'identifiers_supported', 'token_endpoint',
                                 'request_uri_parameter_supported', 'version',
                                 'response_types_supported',
                                 'end_session_endpoint', 'flows_supported'])

        assert info["end_session_endpoint"] == "http://example.com/end_session"
开发者ID:Omosofe,项目名称:pyoidc,代码行数:32,代码来源:test_oic_consumer.py

示例2: test_discover_redirect

# 需要导入模块: from oic.oic.consumer import Consumer [as 别名]
# 或者: from oic.oic.consumer.Consumer import discover [as 别名]
def test_discover_redirect():
    c = Consumer(None, None)
    mfos = MyFakeOICServer(name="http://example.com/")
    c.http_request = mfos.http_request

    principal = "[email protected]"

    res = c.discover(principal)
    assert res == "http://example.net/providerconf"
开发者ID:imsoftware,项目名称:pyoidc,代码行数:11,代码来源:test_oic_consumer.py

示例3: test_discover

# 需要导入模块: from oic.oic.consumer import Consumer [as 别名]
# 或者: from oic.oic.consumer.Consumer import discover [as 别名]
    def test_discover(self):
        c = Consumer(None, None)
        mfos = MyFakeOICServer("http://localhost:8088")
        mfos.keyjar = SRVKEYS
        c.http_request = mfos.http_request

        principal = "[email protected]"
        res = c.discover(principal)
        assert res == "http://localhost:8088/"
开发者ID:Omosofe,项目名称:pyoidc,代码行数:11,代码来源:test_oic_consumer.py

示例4: test_discover

# 需要导入模块: from oic.oic.consumer import Consumer [as 别名]
# 或者: from oic.oic.consumer.Consumer import discover [as 别名]
def test_discover():
    c = Consumer(None, None)
    mfos = MyFakeOICServer(SRVKEYS, "http://example.com/")
    c.http_request = mfos.http_request

    principal = "[email protected]"

    res = c.discover(principal)
    assert res == "http://example.com/"
开发者ID:imsoftware,项目名称:pyoidc,代码行数:11,代码来源:test_oic_consumer.py

示例5: real_test_discover

# 需要导入模块: from oic.oic.consumer import Consumer [as 别名]
# 或者: from oic.oic.consumer.Consumer import discover [as 别名]
 def real_test_discover(self):
     c = Consumer(None, None)
     principal = "[email protected]"
     res = c.discover(principal)
     assert isinstance(res, ProviderConfigurationResponse)
     assert _eq(res.keys(), ['registration_endpoint', 'scopes_supported',
                             'identifiers_supported', 'token_endpoint',
                             'flows_supported', 'version',
                             'userinfo_endpoint',
                             'authorization_endpoint', 'x509_url', 'issuer'])
     assert res.version == "3.0"
     assert _eq(res.flows_supported, ['code', 'token', 'id_token',
                                      'code token', 'code id_token',
                                      'id_token token'])
开发者ID:Omosofe,项目名称:pyoidc,代码行数:16,代码来源:test_oic_consumer.py

示例6: test_client_register

# 需要导入模块: from oic.oic.consumer import Consumer [as 别名]
# 或者: from oic.oic.consumer.Consumer import discover [as 别名]
    def test_client_register(self, fake_oic_server):
        c = Consumer(None, None)

        c.application_type = "web"
        c.application_name = "My super service"
        c.redirect_uris = ["https://example.com/authz"]
        c.contact = ["[email protected]"]
        mfos = fake_oic_server("https://example.com")
        mfos.keyjar = SRVKEYS
        c.http_request = mfos.http_request
        location = c.discover("[email protected]")
        info = c.provider_config(location)

        c.register(info["registration_endpoint"])
        assert c.client_id is not None
        assert c.client_secret is not None
        assert c.registration_expires > utc_time_sans_frac()
开发者ID:,项目名称:,代码行数:19,代码来源:

示例7: test_provider_config

# 需要导入模块: from oic.oic.consumer import Consumer [as 别名]
# 或者: from oic.oic.consumer.Consumer import discover [as 别名]
def test_provider_config():
    c = Consumer(None, None)
    mfos = MyFakeOICServer(SRVKEYS, "http://example.com/")
    c.http_request = mfos.http_request

    principal = "[email protected]"

    res = c.discover(principal)
    info = c.provider_config(res)
    assert info.type() == "ProviderConfigurationResponse"
    print info.keys()
    assert _eq(info.keys(), ['registration_endpoint', 'check_session_endpoint',
                             'refresh_session_endpoint', 'scopes_supported',
                             'identifiers_supported', 'token_endpoint',
                             'version', 'user_info_endpoint',
                             'end_session_endpoint', 'authorization_endpoint',
                             'flows_supported', 'issuer'])

    assert info["end_session_endpoint"] == "http://example.com/end_session"
开发者ID:imsoftware,项目名称:pyoidc,代码行数:21,代码来源:test_oic_consumer.py

示例8: test_provider_config

# 需要导入模块: from oic.oic.consumer import Consumer [as 别名]
# 或者: from oic.oic.consumer.Consumer import discover [as 别名]
def test_provider_config():
    c = Consumer(None, None)
    mfos = MyFakeOICServer("http://example.com")
    mfos.keyjar = SRVKEYS
    c.http_request = mfos.http_request

    principal = "[email protected]"

    res = c.discover(principal)
    info = c.provider_config(res)
    assert info.type() == "ProviderConfigurationResponse"
    print info.keys()
    assert _eq(info.keys(), ['registration_endpoint', u'check_session_endpoint',
                             u'refresh_session_endpoint', 'scopes_supported',
                             'subject_types_supported',
                             'token_endpoint_auth_methods_supported',
                             'id_token_signing_alg_values_supported',
                             u'flows_supported', 'version',
                             u'identifiers_supported', u'user_info_endpoint',
                             'response_types_supported', 'end_session_endpoint',
                             'authorization_endpoint', u'discovery_endpoint',
                             'token_endpoint', 'x509_url', 'issuer'])

    assert info["end_session_endpoint"] == "http://example.com/end_session"
开发者ID:asheidan,项目名称:pyoidc,代码行数:26,代码来源:test_oic_consumer.py

示例9: Consumer

# 需要导入模块: from oic.oic.consumer import Consumer [as 别名]
# 或者: from oic.oic.consumer.Consumer import discover [as 别名]
#!/usr/bin/env python
__author__ = 'rohe0002'

import sys
from oic.oic.consumer import Consumer

principal = sys.argv[1]

if principal[0] in ["@", "=", "!"]:
    print "Not supported"
    sys.exit()

if "@" in principal:
    idtype = "mail"
else:
    idtype = "url"

client = Consumer(None, None)
issuer = client.discover(principal, idtype)

print "ISSUER: %s" % issuer

pcr = client.provider_config(issuer)
print pcr.to_dict()
开发者ID:HaToHo,项目名称:oictest,代码行数:26,代码来源:provider_info.py

示例10: KeyChain

# 需要导入模块: from oic.oic.consumer import Consumer [as 别名]
# 或者: from oic.oic.consumer.Consumer import discover [as 别名]
from oic.oic.consumer import Consumer
from oic.utils.keyio import KeyChain, KeyJar

__author__ = 'rohe0002'
from fakeoicsrv import MyFakeOICServer

CLIENT_SECRET = "abcdefghijklmnop"
CLIENT_ID = "client_1"

RSAPUB = "../oc3/certs/mycert.key"

KC_HMAC_VS = KeyChain({"hmac": CLIENT_SECRET}, usage=["ver", "sig"])
KC_RSA = KeyChain(source="file://%s" % RSAPUB, type="rsa", usage=["ver", "sig"])
KC_HMAC_S = KeyChain({"hmac": CLIENT_SECRET}, usage=["sig"])

SRVKEYS = KeyJar()
SRVKEYS[""] = [KC_RSA]
SRVKEYS["client_1"] = [KC_HMAC_VS, KC_RSA]

c = Consumer(None, None)
mfos = MyFakeOICServer("http://example.com")
mfos.keyjar = SRVKEYS
c.http_request = mfos.http_request

principal = "[email protected]"

res = c.discover(principal)
info = c.provider_config(res)
assert info.type() == "ProviderConfigurationResponse"
开发者ID:asheidan,项目名称:pyoidc,代码行数:31,代码来源:debug_2.py


注:本文中的oic.oic.consumer.Consumer.discover方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。