0
import urllib2
request = urllib2.Request("URL HERE", data="<port>0</port>",
                     headers={'Content-Type': 'application/xml'})
u = urllib2.urlopen(request)
response = u.read()

我试过了,但发现 XML 永远不会到达服务器。我需要 XML 在 HTTP 请求执行的同时到达服务器,以便发回正确的响应。

4

1 回答 1

0

也许这就是你要找的东西: http ://www.voidspace.org.uk/python/articles/urllib2.shtml#data

于 2012-05-23T13:53:13.620 回答