Fixing Python Firebase Auth HTTPResponse Error
If you are using Firebase authentication in python you might encounter this error.
'HTTPResponse' object has no attribute 'strict', status: error
To fix this issue you can install urllib3
package with spesific version 1.26.15
:
pip install urllib3==1.26.15
Or you can update your requirements.txt
file to.
...
urllib3==1.26.15
Reference link.