Example code didn't work on Windows?
Closed this issue · 1 comments
Draqun commented
I trying use your example code on Windows. I installed all gems to application but, when i try generate refresh token it throw me
C:/Ruby200/lib/ruby/2.0.0/net/http.rb:918:in `connect': SSL_connect returned=1 errno=0 state=SSLv3 read server certificate B: certificate verify failed (Faraday::SSLError)
from C:/Ruby200/lib/ruby/2.0.0/net/http.rb:918:in `block in connect'
from C:/Ruby200/lib/ruby/2.0.0/timeout.rb:52:in `timeout'
from C:/Ruby200/lib/ruby/2.0.0/net/http.rb:918:in `connect'
from C:/Ruby200/lib/ruby/2.0.0/net/http.rb:862:in `do_start'
from C:/Ruby200/lib/ruby/2.0.0/net/http.rb:851:in `start'
from C:/Ruby200/lib/ruby/2.0.0/net/http.rb:1367:in `request'
from C:/Ruby200/lib/ruby/gems/2.0.0/gems/faraday-0.9.0/lib/faraday/adapter/net_http.rb:80:in `perform_request'
from C:/Ruby200/lib/ruby/gems/2.0.0/gems/faraday-0.9.0/lib/faraday/adapter/net_http.rb:39:in `call'
from C:/Ruby200/lib/ruby/gems/2.0.0/gems/faraday-0.9.0/lib/faraday/request/url_encoded.rb:15:in `call'
from C:/Ruby200/lib/ruby/gems/2.0.0/gems/signet-0.5.1/lib/signet/oauth_2/client.rb:933:in `fetch_access_token'
from C:/Ruby200/lib/ruby/gems/2.0.0/gems/signet-0.5.1/lib/signet/oauth_2/client.rb:956:in `fetch_access_token!'
from C:/Ruby200/lib/ruby/gems/2.0.0/gems/google_calendar-0.4.2/lib/google/connection.rb:128:in `get_new_access_token'
from C:/Ruby200/lib/ruby/gems/2.0.0/gems/google_calendar-0.4.2/lib/google/connection.rb:84:in `login_with_auth_code'
from C:/Ruby200/lib/ruby/gems/2.0.0/gems/google_calendar-0.4.2/lib/google/calendar.rb:73:in `login_with_auth_code'
from ./a.rb:22:in `<main>'"
Some idea what is wrong?
szich commented
It looks like you are missing some a root ssl .pem file (or openssl is looking in the wrong folder). You can either correct your ssl setup or set ssl verification to none.
OpenSSL::SSL::VERIFY_PEER = OpenSSL::SSL::VERIFY_NONE
If after correcting your ssl setup the sample code still does not run please open this issue back up.