如何设置请求头的Content-Type
时间: 2024-04-09 07:21:53 浏览: 175
Content-Type可以在请求头中设置,指定发送的数据类型。需要设置ContentType时,可以在请求头中添加Content-Type字段,并设置对应的值,如application/json。以下是设置请求头中Content-Type字段的示例:
```
import requests
url = 'https://example.com/api'
headers = {
'Content-Type': 'application/json',
'User-Agent': 'Mozilla/5.0',
'Authorization': 'Bearer token'
}
payload = {'key1': 'value1', 'key2': 'value2'}
response = requests.post(url, headers=headers, json=payload)
```
阅读全文