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 setting verify=False via env variables.
Until we find another solution one can
pip install "requests < 2.28"
See:
We used to set
CURL_CA_BUNDLE=""in order to work properly with self signed certificates as documented in authlib docs.Python
requestsin version 2.28 removes this method of settingverify=Falsevia env variables.Until we find another solution one can
pip install "requests < 2.28"See: