我研究了扭曲的xmlrpc教程:http : //twistedmatrix.com/documents/current/web/howto/xmlrpc.html设置xmlrpc服务器以构建xmlrpc方法,但是我想知道一些来自客户端的请求信息,例如IP地址。教程只是告诉我add xmlrpc_as前缀使我的方法成为远程过程调用。有人知道如何重写吗?任何帮助将不胜感激。或者,也许我需要强制客户端发送其ip作为参数?
def xmlrpc_some_method(self):
if request.ip in bad_ips():
return '404'
else:
return do_something()
相关分类