Rails 像curl一样使用Net/Http

发布于 2024-11-09 11:25:35 字数 220 浏览 0 评论 0原文

卷曲 -F 'access_token=...' \ -F 'message=看看这篇有趣的文章' \ https://graph.facebook.com/me/feed

我用curl写了这个php之前,但我将如何在rails中做到这一点? Rails 中有卷曲之类的东西吗?

curl -F 'access_token=...' \
-F 'message=Check out this funny article' \
https://graph.facebook.com/me/feed

I've written this in curl with php before, but how would I do this in rails? Is there such thing as curl in rails?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

孤檠 2024-11-16 11:25:35

您可以使用 Rails 附带的 Net:HTTP

例如,在您的控制器中您可以使用如下内容:

uri = URI.parse("https://graph.facebook.com/me/feed")
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = true
http.verify_mode = OpenSSL::SSL::VERIFY_NONE

request = Net::HTTP::Get.new(uri.request_uri)
response = http.request(request)
# and whatever you want to do with the response var

更新

请记住,您可以在模型或模块中编写此代码。

You can use the Net:HTTP thats come with rails

For example , in your controller you can use something like this :

uri = URI.parse("https://graph.facebook.com/me/feed")
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = true
http.verify_mode = OpenSSL::SSL::VERIFY_NONE

request = Net::HTTP::Get.new(uri.request_uri)
response = http.request(request)
# and whatever you want to do with the response var

Update

Remember that you could write this code in a model, or module.

国际总奸 2024-11-16 11:25:35

Ruby 中有多个 HTTP 客户端库,您也可以在 Rails 应用程序中使用它们。除了Ruby自己内置的Net:HTTP之外,还有HTTParty(http://httparty.rubyforge.org/)和curb(http://rubygems.org/gems/curb)等库,它是libcurl的包装器。

There are several HTTP client libraries in Ruby, which you could also use from within a Rails app. Besides Ruby's own built-in Net:HTTP, there are libraries such as HTTParty (http://httparty.rubyforge.org/) and curb (http://rubygems.org/gems/curb), which is a wrapper for libcurl.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文