-
-
Notifications
You must be signed in to change notification settings - Fork 858
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
httpx.ReadError: [SSL: TLSV13_ALERT_CERTIFICATE_REQUIRED] tlsv13 alert certificate required for version 0.28.0 #3441
Comments
Interesting thanks. Does the above PR look correct to you? |
No, nothing changes. |
I experience this as well after upgrading to 0.28.0. But I had a certificate sent in as a string path for the import httpx
certs = ... # Two pem files to be read from disk
server_cert = ... # Another pem file to be read from disk
client = httpx.Client(cert=certs, verify=str(server_cert))
client.post("/myendpoint", json={}) This gives the error reported above. When I install the certificate in my Certificate Store (I am using Windows) and remove the
Has something changed in how certificates are loaded? |
My issue has been resolved with 0.28.1. Thank you very much for the rapid response on this! |
I am using 3 parameters to make request:
cert=(cert.crt, crt.key)
verify=False
In version 0.27.2 everything is OK.
The text was updated successfully, but these errors were encountered: