如何使用 Ruby on Rails 发出 HTTPS GET/POST 请求?
最后,我在 Mac 操作系统上的 Apache 中启用了 SSL。现在我想从我的 RoR3 应用程序向另一个 RoR3 应用程序发出 HTTPS GET/POST 请求并接收响应。
我怎样才能在 Ruby on Rails 中做到这一点?
对于 HTTP GEST/POST“版本”,我已经 使用 Ruby 的 Net::HTTP< 解决了问题 /a> 类:
require 'net/http'
url = URI.parse('http://www.example.com/index.html')
req = Net::HTTP::Get.new(url.path)
res = Net::HTTP.start(url.host, url.port) {|http|
http.request(req)
}
puts res.body
Finally I enabled SSL in Apache on my Mac Os. Now I would like to make HTTPS GET/POST requests from a my RoR3 application to another RoR3 application and receive the response.
How can I make this in Ruby on Rails?
For the HTTP GEST/POST "version" I have already solved the issue using Ruby's Net::HTTP class:
require 'net/http'
url = URI.parse('http://www.example.com/index.html')
req = Net::HTTP::Get.new(url.path)
res = Net::HTTP.start(url.host, url.port) {|http|
http.request(req)
}
puts res.body
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论