如何使用HTTParty处理错误?

时间:2011-10-26 22:15:39

标签: ruby-on-rails ruby httparty

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

3 个答案:

答案 0 :(得分:89)

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

答案 1 :(得分:29)

此答案解决了连接失败问题。如果找不到网址,状态代码将无法帮助您。像这样拯救它:

 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

有关详细信息,请参阅:this github issue

答案 2 :(得分:12)

您也可以这样方式使用success?bad_gateway?等方便的谓词方法:

response = HTTParty.post(uri, options)
p response.success?

可以在Rack::Utils::SYMBOL_TO_STATUS_CODE常量

下找到完整的可能响应列表