用户提交带有一些基本数据的表单。
通过控制器中的操作接收和处理数据,并添加更多需要保密的信息。
然后我需要向外部网站发送一个发布请求,其中包含来自控制器的所有组合数据。
做这个的最好方式是什么?
用户提交带有一些基本数据的表单。
通过控制器中的操作接收和处理数据,并添加更多需要保密的信息。
然后我需要向外部网站发送一个发布请求,其中包含来自控制器的所有组合数据。
做这个的最好方式是什么?
最简单的方法是使用 ruby 核心库:
require "uri"
require "net/http"
params = {'box1' => 'Nothing is less important than which fork you use. Etiquette is the science of living. It embraces everything. It is ethics. It is honor. -Emily Post',
'button1' => 'Submit'
}
x = Net::HTTP.post_form(URI.parse('http://www.interlacken.com/webdbdev/ch05/formpost.asp'), params)
puts x.body
专业提示:做一个异步请求,使用像delayed_job或background_rb这样的gem
抱歉,我忘了提到我正在连接到安全服务器。这似乎是我收到文件结束错误的原因。添加 using 'net/https' 并在连接时调用 use_ssl 解决了这个问题。感谢大家的帮助。
require 'net/https'
require 'open-uri'
url = URI.parse('https://MY_URL')
req = Net::HTTP::Post.new(url.path)
req.form_data = data
req.basic_auth url.user, url.password if url.user
con = Net::HTTP.new(url.host, url.port)
con.use_ssl = true
con.start {|http| http.request(req)}
这是基于 post_form 方法的源代码,所以我想我会给 vlad.zloteanu 答案。
如果外部服务器是 RESTful,那么只需创建一个ActiveResource模型来处理您的数据。
我不认为redirect_to 处理发布请求,因为它使用http 302(?),它只是获取另一个页面。
我相信你可以做这样的事情
Class MyController < ActionController
require 'net/http'
def my_method
#do something with the data/model
my_connection = Net::HTTP.new('www.target.com', 80)
reponse = my_connection.post(path_within_url, data)
#do something with response if you want
end
end
注意:这是空气编码的,尚未经过尝试或测试
如果您想发送 JSON,您只需要以下内容(在 Rails 6 中测试):
Net::HTTP.post(
URI('https://example.com/some/path'),
{ "this is the": "request body" }.to_json,
'Content-Type' => 'application/json'
)