在 Ruby on Rails 2 中使用 Curl 命令
我想通过 HTTP 将一些 XML 文件发送到 post 请求中的 Web 服务。我有生成的 XML 文件,并且想使用以下命令,
curl -F "[email protected]" -F "[email protected]" \
-F "[email protected]" https://www.somesite.com/submit
但我不知道如何将该命令合并到 Rails 2 中。
请有人建议我一个可以用于此目的的想法或库。
干杯
I am wanting to send some XML files over HTTP to a web service in post request. I have the generated XML files and would like to use the following command
curl -F "[email protected]" -F "[email protected]" \
-F "[email protected]" https://www.somesite.com/submit
I have no clue how to incorporate the command in Rails 2.
Please could so one suggest me an idea or library that I could use for this purpose.
Cheers
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 Curb gem,它是一个将 cURL 包装在 Ruby 对象和方法中的库。
查看 http://taf2.github.com/curb/ 上的示例。
在你的情况下,你将不得不使用类似的东西
Use the Curb gem, it is a library that wraps cURL in Ruby objects and methods.
Have a look at the examples on http://taf2.github.com/curb/.
In your case you will have to use something like