在 Ruby on Rails 2 中使用 Curl 命令

发布于 2025-01-02 09:12:56 字数 663 浏览 0 评论 0原文

我想通过 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

〗斷ホ乔殘χμё〖 2025-01-09 09:12:57

使用 Curb gem,它是一个将 cURL 包装在 Ruby 对象和方法中的库。

查看 http://taf2.github.com/curb/ 上的示例。

在你的情况下,你将不得不使用类似的东西

submission_field = Curl::PostField.content(File.read('submission.xml'), 'SUBMISSION')
study_field = Curl::PostField.content(File.read('stydy.xml'), 'STUDY')

c = Curl::Easy.http_post("https://www.somesite.com/submit",
                         submission_field, study_field, ...)

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

submission_field = Curl::PostField.content(File.read('submission.xml'), 'SUBMISSION')
study_field = Curl::PostField.content(File.read('stydy.xml'), 'STUDY')

c = Curl::Easy.http_post("https://www.somesite.com/submit",
                         submission_field, study_field, ...)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文