InstaBot icon indicating copy to clipboard operation
InstaBot copied to clipboard

pycurl.error: (60, 'SSL certificate problem: unable to get local issuer certificate')

Open fludkov-valerii opened this issue 11 years ago • 5 comments

Hi marclave!

I have following error after run InstaBot.py:

        InstaBot
Developed by Marc Laventure

Liking #I Traceback (most recent call last): File "InstaBot.py", line 113, in like(br, hashtags) File "InstaBot.py", line 79, in like response = encodeAndRequest(id) File "InstaBot.py", line 22, in encodeAndRequest c.perform() pycurl.error: (60, 'SSL certificate problem: unable to get local issuer certificate')

How can I resolve this?

fludkov-valerii avatar Dec 24 '14 16:12 fludkov-valerii

I get this error too!

patruff avatar Jan 25 '16 01:01 patruff

I solved the problem this way:

  1. pip install certifi
  2. Open InstaBot.py
  3. add "import certifi"
  4. before : c.setopt(c.URL, url) add: c.setopt(pycurl.CAINFO, certifi.where())

P.S sorry for my English

ArtVasykt avatar Feb 03 '16 07:02 ArtVasykt

curl.setopt(pycurl.SSL_VERIFYPEER, 0) is key point

peter123023 avatar Aug 02 '19 08:08 peter123023

I am getting same error when moving my code on Unix server but same works on windows. Don't know what is wrong. Tried multiple option such Ssl verify option set false

ashishsingh007 avatar Jun 25 '20 14:06 ashishsingh007

This is because your browser signature is banned by the owner. This is an identity error ( ERROR 1010)

rpd-tweet avatar Jul 03 '20 11:07 rpd-tweet