在请求中添加 JSON 数据可以通过以下代码实现:
import requests import json
url = "http://example.com/api" data = {"name": "John Doe", "age": 30} headers = {"content-type": "application/json"}
response = requests.post(url, data=json.dumps(data), headers=headers)
print(response.status_code)
在上面的代码中,我们使用 requests 库的 post() 方法发起请求,并将数据转换成 JSON 格式,并将请求头设置为'application/json”。这确保了服务器可以正确解析我们发送的数据。