Files
httprunner/docs/FAQ.md
2019-11-03 16:06:36 +08:00

15 lines
450 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# 常见问题
## HTTPS SSLError
请求 HTTPS 接口时若本地开启了代理软件Charles/Fiddler由于 HTTPS 证书的原因,会导致 SSLError 的报错。
解决的方式是,在 config 中增加 `verify: False`,原理见 requests 的 [`SSL Cert Verification`](https://requests.kennethreitz.org/en/master/user/advanced/#ssl-cert-verification) 部分。
```yaml
config:
name: XXX
base_url: XXX
verify: False
```