gpt4 book ai didi

python - 如何使用 python xmlrpclib 为 RPC 调用发送自定义 http_headers?

转载 作者:行者123 更新时间:2023-11-28 19:51:28 25 4
gpt4 key购买 nike

如何使用 python xmlrpclib 库发送自定义 HTTP header ! ?我需要在调用 RPC 方法时发送一些特殊的自定义 http_headers

最佳答案

您可以子类化 xmlrpclib.Transport 并将其作为参数传递给 ServerProxy。选择一个要覆盖的方法(我选择了 send_content),您就设置好了。

# simple test program (from the XML-RPC specification)
from xmlrpclib import ServerProxy, Transport, Error

class SpecialTransport(Transport):

def send_content(self, connection, request_body):

print "Add your headers here!"

connection.putheader("Content-Type", "text/xml")
connection.putheader("Content-Length", str(len(request_body)))
connection.endheaders()
if request_body:
connection.send(request_body)


# server = ServerProxy("http://localhost:8000") # local server
server = ServerProxy("http://betty.userland.com", transport=SpecialTransport())

print server

try:
print server.examples.getStateName(41)
except Error, v:
print "ERROR", v

关于python - 如何使用 python xmlrpclib 为 RPC 调用发送自定义 http_headers?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4624085/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com