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