HOME BLOG

Archive for the ‘cURL’ Category

How to ignore SSL connection issues when using curl

Posted on: June 30th, 2023 by Olu No Comments

Hi folks,

In this post I discuss briefly how to get around an error you may see when using curl as follows:

curl: (60) SSL certificate problem: unable to get local issuer certificate
...

You can get around this problem by using the –insecure flag. E.g.

 
curl --insecure your-url

That’s all for now. Till next time, happy software development.