python接口自动化测试十一:传参数:data与json
2021-07-10 21:07
标签:分享 orm sts xxxx 方法 http 未来 blog 9.png import requests url = "http://v.juhe.cn/weather/index" "format": "1", # 未来7天预报(future)两种返回格式,1或2,默认1 python接口自动化测试十一:传参数:data与json 标签:分享 orm sts xxxx 方法 http 未来 blog 9.png 原文地址:https://www.cnblogs.com/dwdw/p/9553119.html# 传json参数
import requests
url = ‘xxxxxxxx‘
body = {
‘xxx‘: ‘xxx‘,
‘xxx‘: ‘xxx‘
}
# body是json格式的
r = requests.post(url, json=body)
print(r.text)
# 第二种方法
import jsonr = requests.post(url, data=json.dumps(body))
print(r.text)
par = {
"cityname": "深圳", # 城市名或城市ID,如:"苏州",需要utf8 urlencode
"dtype": "json", # 返回数据格式:json或xml,默认json "key": "80b4d4e1d870d257d3344fcf2d08f64a" # key须申请
}
r = requests.get(url, params=par)
print(r.text) # json格式的str
文章标题:python接口自动化测试十一:传参数:data与json
文章链接:http://soscw.com/index.php/essay/103405.html