SSL throwing error 185090050 while authentication via Oauth

后端 未结 4 1208
迷失自我
迷失自我 2020-12-17 23:43

I am trying use Google\'s Oauth to connect to Google adsense and am getting this error. Any clues to fix it?

Anyone has faced such a issue before in python?

4条回答
  •  独厮守ぢ
    2020-12-18 00:13

    In my case I was running the Django development server. If the server was run prior to switching into the virtual environment I found [Errno 185090050] _ssl.c:345: error:0B084002:x509 certificate routines:X509_load_cert_crl_file:system lib in my traceback. Simply put, I was no longer running the version of httplib2 that created the certificates: I was likely running the dist-package. (Ububtu 13.10), Python 2.7, Django 1.62. Hope this helps others.

提交回复
热议问题