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})