Recently a large SSL certificate organization has changed its way of working and this may have affected some of you if you did not anticipate this change.
If you receive an error such as "SSL certificate problem", it is necessary to update your libraries or to disable certificate verification on your side.
On our side the necessary is done and operational.
Here are some links that may help you :
- https://mobile.twitter.com/letsencrypt/status/1443621997288767491
- https://stackoverflow.com/questions/27835619/urllib-and-ssl-certificate-verify-failed-error
- https://moreless.medium.com/how-to-fix-python-ssl-certificate-verify-failed-97772d9dd14c
Example for PHP CURL :
// add this to the curl request
CURLOPT_SSL_VERIFYHOST => false,
CURLOPT_SSL_VERIFYPEER => false
Example for PYTHON :
export PYTHONHTTPSVERIFY=0
python your_script
These examples disables certificate checking and is not recommended or only for development environments. We advise you to update your certificates and your libraries and to keep the SSL certificate verification
Have a good day