POST 请求

POST 请求是使用 request.post() 方法完成的。

如果你需要将 Web 表单请求作为 POST 主体发送,请传入一个包含键值对的字典作为 data 参数; requests 将这些编码为 application/x-www-form-urlencoded mimetype 主体:

r = requests.post('https://github.com/', data={"a": 1, "b": 2})

如果需要 POST 一个 json 有效负载,可以使用 json=。这将自动将 Content-Type 标头设置为 application/json

r = requests.post('https://github.com/', data={"a": 1, "b": 2})