本文整理汇总了Python中jsonrpclib.SimpleJSONRPCServer.SimpleJSONRPCRequestHandler.do_POST方法的典型用法代码示例。如果您正苦于以下问题:Python SimpleJSONRPCRequestHandler.do_POST方法的具体用法?Python SimpleJSONRPCRequestHandler.do_POST怎么用?Python SimpleJSONRPCRequestHandler.do_POST使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类jsonrpclib.SimpleJSONRPCServer.SimpleJSONRPCRequestHandler
的用法示例。
在下文中一共展示了SimpleJSONRPCRequestHandler.do_POST方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: do_POST
# 需要导入模块: from jsonrpclib.SimpleJSONRPCServer import SimpleJSONRPCRequestHandler [as 别名]
# 或者: from jsonrpclib.SimpleJSONRPCServer.SimpleJSONRPCRequestHandler import do_POST [as 别名]
def do_POST(self):
# pylint: disable=E1101
if self.path == '/RPC2':
SimpleJSONRPCRequestHandler.do_POST(self)
else:
__pychecker__ = 'no-classattr'
SimpleHTTPRequestHandler.do_POST(self)
示例2: do_POST
# 需要导入模块: from jsonrpclib.SimpleJSONRPCServer import SimpleJSONRPCRequestHandler [as 别名]
# 或者: from jsonrpclib.SimpleJSONRPCServer.SimpleJSONRPCRequestHandler import do_POST [as 别名]
def do_POST(self):
if self.auth_map != None:
if self.headers.has_key('authorization') and self.headers['authorization'].startswith('Basic '):
authenticationString = base64.b64decode(self.headers['authorization'].split(' ')[1])
if authenticationString.find(':') != -1:
username, password = authenticationString.split(':', 1)
self.logger.info('Got request from %s:%s' % (username, password))
if self.auth_map.has_key(username) and self.verifyPassword(username, password):
return SimpleJSONRPCRequestHandler.do_POST(self)
else:
self.logger.error('Authentication failed for %s:%s' % (username, password))
self.logger.error('Authentication failed')
self.send_response(401)
self.end_headers()
return False
return SimpleJSONRPCRequestHandler.do_POST(self)
示例3: do_POST
# 需要导入模块: from jsonrpclib.SimpleJSONRPCServer import SimpleJSONRPCRequestHandler [as 别名]
# 或者: from jsonrpclib.SimpleJSONRPCServer.SimpleJSONRPCRequestHandler import do_POST [as 别名]
def do_POST(self):
if self.client_address[0] not in allowed_ips:
self.send_error(403,"Your address is not in allowed_ips")
return
SimpleJSONRPCRequestHandler.do_POST(self)