python3.6发送post请求

Posted 波子汽水yeah

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python3.6发送post请求相关的知识,希望对你有一定的参考价值。

参考:【python】3.6版本使用http.client网络请求示例

#!/user/bin/python
#-*- coding:utf-8 -*-

import urllib.parse
import http.client
import json

test_data ='uid':55,'page':1  
test_data_url_encode = urllib.parse.urlencode(test_data)
request_url = "http://m.mp.oeeee.com/uncache.php?m=Doc&a=spaceInfo"
conn = http.client.HTTPConnection('m.mp.oeeee.com')
header = "Content-type": "application/x-www-form-urlencoded", "Accept": "text/plain"
conn.request(method="POST", url=request_url, headers=header, body=test_data_url_encode)
response = conn.getresponse()
#print(response.status)
#print(response.reason)
res = response.read()
#print(res)
resp = json.loads(res)
print(resp)

以上是关于python3.6发送post请求的主要内容,如果未能解决你的问题,请参考以下文章

python3中使用urllib进行https请求

C# 利用HttpWebRequest进行HTTPS的post请求的示例

php模拟发送GET和POST请求

发送 HTTP/2 POST 请求 NodeJS

使用 C# 和 HttpWebRequest 向端点发送 POST 请求

如何在颤动的 POST 请求中将 Map 作为字符串发送?