我正在尝试使用oauth库,因此我可以使用条带连接。
https://github.com/intridea/oauth2是我正在使用的宝石。但是,无论什么时候我真的尝试这样使用它:
@resp = client.auth_code.get_token(code, :params => {:scope => 'read_write'})
每次我得到这个错误。
Faraday::SSLError (SSL_connect returned=1 errno=0 state=SSLv3 read server certificate B: certificate verify failed):
我尝试了很多不同的解决方案,但我无法解决任何问题。到目前为止,网上的所有内容都表示我应该更新证书,我使用我在这里找到的4种不同的方式。
我不知道该怎么做。
答案 0 :(得分:0)
我想通过添加
找到了解决方法config.force_ssl = false
到config / application.rb