We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
We used to set CURL_CA_BUNDLE="" in order to work properly with self signed certificates as documented in authlib docs.
CURL_CA_BUNDLE=""
Python requests in version 2.28 removes this method of setting verify=False via env variables. Until we find another solution one can
requests
verify=False
pip install "requests < 2.28"
See:
The text was updated successfully, but these errors were encountered:
No branches or pull requests
We used to set
CURL_CA_BUNDLE=""
in order to work properly with self signed certificates as documented in authlib docs.Python
requests
in version 2.28 removes this method of settingverify=False
via env variables.Until we find another solution one can
pip install "requests < 2.28"
See:
The text was updated successfully, but these errors were encountered: