0


python Requests添加Auth和Cert

最近通过postman发起另外一个项目的请求,鉴权较为复杂,首先需要设置cert,postman中设置如下:
在这里插入图片描述
需要设置basic auth的参数
在这里插入图片描述

然后将接口返回的token放入auth的bearer token中。
实际使用时发现使用postman的数据驱动功能较为麻烦,而且不利于对测试结果日志采集,于是通过requests实现该功能代码如下

requests.post(token_url,auth=HTTPBasicAuth(username,password),cert=(cert_path,key_path),verify=False).text
  • HTTPBasicAuth为设置basicauth的鉴权参数
  • cert为cert和key的path路径
标签: postman 测试工具

本文转载自: https://blog.csdn.net/m0_48468018/article/details/128278446
版权归原作者 Tester_孙大壮 所有, 如有侵权,请联系我们删除。

“python Requests添加Auth和Cert”的评论:

还没有评论