SSL Certificates

- Posted in General by

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 :

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