我在网上找到了这个脚本:
import httplib, urllib
params = urllib.urlencode({'number': 12524, 'type': 'issue', 'action': 'show'})
headers = {"Content-type": "application/x-www-form-urlencoded",
"Accept": "text/plain"}
conn = httplib.HTTPConnection("bugs.python.org")
conn.request("POST", "", params, headers)
response = conn.getresponse()
print response.status, response.reason
302 Found
data = response.read()
data
'Redirecting to <a href="http://bugs.python.org/issue12524">http://bugs.python.org/issue12524</a>'
conn.close()
但是我不明白如何在PHP中使用它,或者params变量中的所有内容是什么,或者如何使用它。在尝试使它正常工作时,请给我一点帮助吗?
1
发布请求就是发布请求,无论服务器端是什么。
—
OndraŽižka'12
这将发送POST请求。然后,服务器以302(重定向)标头响应您的POST。到底有什么问题?
—
ddinchev
这个脚本看起来并不python3.2 COMPAT
—
JDI
相当于此示例的python3可能是:pastebin.com/Rx4yfknM
—
jdi 2012年
我的建议是安装firefox的
—
RanRag 2012年
live http header
插件,然后在firefox中打开url并request/response
在live http header
addon中看到url,这比您会理解params and headers
代码中的功能要好。