如何使用HTTParty处理错误?


73

我正在使用HTTParty进行Rails应用程序发出HTTP请求。如何使用HTTParty处理HTTP错误?具体来说,我需要捕获HTTP 502和503以及其他错误,例如连接被拒绝和超时错误。

Answers:


95

HTTParty :: Response的实例具有一个code属性,其中包含HTTP响应的状态代码。它以整数形式给出。因此,如下所示:

response = HTTParty.get('http://twitter.com/statuses/public_timeline.json')

case response.code
  when 200
    puts "All good!"
  when 404
    puts "O noes not found!"
  when 500...600
    puts "ZOMG ERROR #{response.code}"
end

谢谢!那就是我打算做的事情。想知道是否还有其他方法可以进行错误处理。
preethinarayan 2011年

48
这个答案不能解决连接失败的问题。
gtd 2013年

2
至于preethinarayan的评论,如果您想捕获/挽救错误,则可以始终执行以下操作:如果response.code!= 200,请blablahblah我实际上会做类似的事情……
user435779

如果在应用程序中处理了错误,则response.code始终返回200。如何解决?
Infant Dev

42

该答案解决了连接失败。如果找不到URL,则状态码将无法为您提供帮助。像这样拯救它:

 begin
   HTTParty.get('http://google.com')
 rescue HTTParty::Error
   # don´t do anything / whatever
 rescue StandardError
   # rescue instances of StandardError,
   # i.e. Timeout::Error, SocketError etc
 end

有关更多信息,请参见:此github问题


11
永远不要抓住一切。您应该捕获HTTPartys错误基类。
Linus Oleander

也许是为了捕获HTTParty代码中的错误。HTTParty可能会引发不是的错误HTTParty::Errors
B 7年

1
如果根本没有网络,我会得到一个SocketError注意。您可以尝试拔下以太网电缆以查看是否发生这种情况。
克里斯(Kris)

HTTP_ERRORS在吊架上使用github.com/thoughtbot/suspenders/blob/master/templates/…HTTParty::Error rubydoc.info/github/jnunemaker/httparty/HTTParty/Error,例如rescue HTTParty::Error, *HTTP_ERRORS
localhostdotdev

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.