本文整理汇总了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())
示例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)")
示例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)")