客户端:POST 提交 JSON

71.5 客户端:POST 提交 JSON

requests.post(url, json=dict) 自动把字典转 JSON 并设置 Content-Type。

表单提交用 data=dict;文件上传用 files=。

POST JSON 数据

# ========================================
# 示例:POST 提交 JSON
# ========================================
import requests

url = 'https://httpbin.org/post'
payload = {'name': '小明', 'score': 95}

r = requests.post(url, json=payload, timeout=10)
print('状态码', r.status_code)
print('服务端收到的 JSON', r.json()['json'])