SSL_connect returned=1 errno=0 state=SSLv3 read server certificate B: certificate verify failed

后端 未结 30 2798
太阳男子
太阳男子 2020-11-22 04:29

I am using Authlogic-Connect for third party logins. After running appropriate migrations, Twitter/Google/yahoo logins seem to work fine but the facebook login throws except

30条回答
  •  不要未来只要你来
    2020-11-22 04:54

    What worked for me is a combination of answers, namely:

    # Reinstall OpenSSL
    brew update
    brew remove openssl
    brew install openssl
    # Download CURL CA bundle
    cd /usr/local/etc/openssl/certs
    wget http://curl.haxx.se/ca/cacert.pem
    /usr/local/opt/openssl/bin/c_rehash
    # Reinstall Ruby from source
    rvm reinstall 2.2.3 --disable-binary
    

提交回复
热议问题