例如:
import requests
import json
url = 'http://example.com/path/to/api'
data = {
'name': 'John',
'age': 30,
'gender': 'male'
}
headers = {'Content-type': 'application/json'}
response = requests.post(url, headers=headers, json=data)
print(response.status_code)
print(response.json())
这里通过json参数传递了一个字典类型的data数据,在请求头中设置Content-Type为application/json。requests会自动将json参数转化为合法的JSON格式,并且将其作为请求体提交给服务器。注意,这里的json参数是requests库中的内置参数之一,表示将请求体数据序列化为JSON格式。
在服务器端收到上述POST请求时,可以使用request对象的json属性来获取提交过来的JSON数据。文章来源:https://www.toymoban.com/news/detail-505433.html
需要注意的是,如果要使用requests库发送JSON类型的数据,就必须设置请求头Content-Type为"application/json",否则服务端无法正确解析请求。文章来源地址https://www.toymoban.com/news/detail-505433.html
到了这里,关于Python | 爬虫的request.post如何传递json参数的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!