python httplib库怎么发送https协议的post请求?
url地址为http的时候可以发送,但是换成https的就error了,不知道为啥!是说httplib库就不支持么还是怎样?...
url地址为http的时候可以发送,但是换成https的就error了,不知道为啥!
是说httplib库就不支持么还是怎样? 展开
是说httplib库就不支持么还是怎样? 展开
1个回答
2015-07-10
展开全部
headers = {"Content-type": "application/x-www-form-urlencoded; charset=UTF-8",
"Accept": "*/*"}
params = {'username':'xxxx'}
data = urllib.urlencode(params)
host = '127.0.0.1'
url = '/login'
conn = httplib.HTTPSConnection(host)
conn.request('POST', url, data, headers)
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询