如何在rails中发送URL请求?

时间:2012-07-23 14:54:56

标签: ruby-on-rails api url call

我需要使用rails中的方法调用带有参数的URL。如何在rails中调用URL?例如,在该方法中,我想调用此URL请求:www.example.com?name = parameter01& password = parameter02

如何在rails中调用这种类型的url方法?

1 个答案:

答案 0 :(得分:6)

您是否尝试过此操作:http://ruby-doc.org/stdlib-1.9.3/libdoc/net/http/rdoc/Net/HTTP.html

一个例子:

require 'net/http'
uri = URI('http://example.com/index.html?key=value')
req = Net::HTTP.get(uri)
puts req #show result