python+request如何实现接口传参(传参格式为json,有两个部分需传参headers+body)
时间: 2023-03-30 22:00:43 浏览: 116
由浅入深—-python+requests+unittest执行自动化接口测试
可以使用Python中的requests库,通过传入headers和json参数来实现接口传参。具体代码如下:
```
import requests
url = 'http://example.com/api'
headers = {'Content-Type': 'application/json'}
data = {'key1': 'value1', 'key2': 'value2'}
response = requests.post(url, headers=headers, json=data)
```
其中,url为接口地址,headers为请求头部,data为需要传递的json参数。使用requests.post方法发送POST请求,并将headers和json参数传入即可。
阅读全文