AI编程生活评测
归档

2023 年 7 月

编程笔记 / 1 min

python中报错SSLCertVerificationError

在使用 request 向 https 发送请求时出现报错: requests.exceptions.SSLError: HTTPSConnectionPool(host='xxx.com', port=443): Max retries ...

编程笔记 / 1 min

FastApi中奇怪的405错误Method Not Allowed

在使用 FastApi 测试接口时,在 swagger 中能正常请求的接口在客户端请求时报错 {"code": 405, "status": "error", "message": "Method Not Allowed"} ,来看下是怎么...