Using Windows Certificate Store #2490
Answered
by
lovelydinosaur
MikuAuahDark
asked this question in
Potential Issue
-
|
Hello, I'm trying to use With Windows built-in So I'm 100% sure my CA is installed successfully. I'm running httpx 0.23.1, if that matters. |
Beta Was this translation helpful? Give feedback.
Answered by
lovelydinosaur
Dec 5, 2022
Replies: 1 comment 5 replies
-
|
Hrm... could you try the following... import httpx
import ssl
ssl_context = ssl.create_default_context()
ssl_context.load_default_certs()
httpx.get(..., verify=context) |
Beta Was this translation helpful? Give feedback.
5 replies
Answer selected by
MikuAuahDark
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hrm... could you try the following...