代码:
import requests
url = 'https://xxx.com/xxx'
# 注意这里必须以json字符串构造数据
data = '''
{
"username": "showdoc",
"password": "xxx"
}
'''
headers = {'content-type': 'application/json'}
# 与 get 请求一样,r 为响应对象
r = requests.post(url, data=data, headers=headers)
# 查看响应结果
print(r.json())
# 查看请求头部
print(r.request.headers)
## 你可以看看 content-type 字段
-------------------------------------------------------------------------------------------------
如果说requests报错,不存在,那么就得pip安装一下
当然先得安装了python , (python3)
pip install requests
如下图: