ruby-on-rails – 点击Google Contacts API时发现“由对等连接重置”错误

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – 点击Google Contacts API时发现“由对等连接重置”错误前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试图使用Google Contacts API将Google通讯录拉入Rails应用程序.我已经完成了Oauth2握手,现在我使用我的访问令牌来请求受保护的资源.这是代码
uri = URI('https://www.google.com/m8/Feeds/contacts/default/full')
params = { :client_id => APP_CONFIG[:google_api_client_id],:access_token => auth.access_token,"max-results".to_sym => max_results
         }

uri.query = URI.encode_www_form(params)
res = Net::HTTP.get_response(uri)

解决方法

您正在请求HTTPS资源,因此您的GET请求需要使用SSL加密.

http://ruby-doc.org/stdlib-1.9.3/libdoc/net/http/rdoc/Net/HTTP.html#method-i-use_ssl-3F

所以你的最后一行应该是:

http = Net::HTTP.new(uri.host,uri.port)
  http.use_ssl = true
  http.verify_mode = OpenSSL::SSL::VERIFY_NONE # You should use VERIFY_PEER in production
  request = Net::HTTP::Get.new(uri.request_uri)
  res = http.request(request)
原文链接:https://www.f2er.com/ruby/266555.html

猜你在找的Ruby相关文章