當前位置: 首頁>>代碼示例>>Python>>正文


Python TokenErrorResponse.to_urlencoded方法代碼示例

本文整理匯總了Python中oic.oauth2.message.TokenErrorResponse.to_urlencoded方法的典型用法代碼示例。如果您正苦於以下問題:Python TokenErrorResponse.to_urlencoded方法的具體用法?Python TokenErrorResponse.to_urlencoded怎麽用?Python TokenErrorResponse.to_urlencoded使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在oic.oauth2.message.TokenErrorResponse的用法示例。


在下文中一共展示了TokenErrorResponse.to_urlencoded方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: test_parse_authz_invalid_client

# 需要導入模塊: from oic.oauth2.message import TokenErrorResponse [as 別名]
# 或者: from oic.oauth2.message.TokenErrorResponse import to_urlencoded [as 別名]
    def test_parse_authz_invalid_client(self):
        self.consumer.begin("http://localhost:8087",
                            "http://localhost:8088/authorization")

        atr = TokenErrorResponse(error="invalid_client")

        with pytest.raises(AuthzError):
            self.consumer.handle_authorization_response(
                query=atr.to_urlencoded())
開發者ID:htobenothing,項目名稱:pyoidc,代碼行數:11,代碼來源:test_oauth2_consumer.py

示例2: test_consumer_parse_authz_error_2

# 需要導入模塊: from oic.oauth2.message import TokenErrorResponse [as 別名]
# 或者: from oic.oauth2.message.TokenErrorResponse import to_urlencoded [as 別名]
def test_consumer_parse_authz_error_2():
    _session_db = {}
    cons = Consumer(_session_db, client_config=CLIENT_CONFIG,
                    server_info=SERVER_INFO, **CONSUMER_CONFIG)
    cons.debug = True

    _ = cons.begin("http://localhost:8087",
                   "http://localhost:8088/authorization")

    atr = TokenErrorResponse(error="invalid_client")
    QUERY_STRING = atr.to_urlencoded()

    raises(AuthzError,
           "cons.handle_authorization_response(query=QUERY_STRING)")
開發者ID:takehikokodama,項目名稱:pyoidc,代碼行數:16,代碼來源:test_oauth2_consumer.py

示例3: test_consumer_parse_authz_error_2

# 需要導入模塊: from oic.oauth2.message import TokenErrorResponse [as 別名]
# 或者: from oic.oauth2.message.TokenErrorResponse import to_urlencoded [as 別名]
def test_consumer_parse_authz_error_2():
    _session_db = {}
    cons = Consumer(_session_db, client_config = CLIENT_CONFIG,
                    server_info=SERVER_INFO, **CONSUMER_CONFIG)
    cons.debug = True
    environ = BASE_ENVIRON

    _ = cons.begin(environ, start_response)

    atr = TokenErrorResponse(error="invalid_client")
    environ = BASE_ENVIRON.copy()
    environ["QUERY_STRING"] = atr.to_urlencoded()

    raises(AuthzError,
           "cons.handle_authorization_response(environ, start_response)")
開發者ID:asheidan,項目名稱:pyoidc,代碼行數:17,代碼來源:test_oauth2_consumer.py


注:本文中的oic.oauth2.message.TokenErrorResponse.to_urlencoded方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。