我正在使用HTTParty进行Rails应用程序发出HTTP请求。如何使用HTTParty处理HTTP错误?具体来说,我需要捕获HTTP 502和503以及其他错误,例如连接被拒绝和超时错误。
Answers:
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
该答案解决了连接失败。如果找不到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问题
HTTParty
s错误基类。
HTTParty::Errors
。
SocketError
注意。您可以尝试拔下以太网电缆以查看是否发生这种情况。
HTTP_ERRORS
在吊架上使用github.com/thoughtbot/suspenders/blob/master/templates/…和HTTParty::Error
rubydoc.info/github/jnunemaker/httparty/HTTParty/Error,例如rescue HTTParty::Error, *HTTP_ERRORS
您也可以使用这种方便的断言方法的success?
或bad_gateway?
用这种方式:
response = HTTParty.post(uri, options)
p response.success?
可能的响应的完整列表可以在Rack::Utils::SYMBOL_TO_STATUS_CODE
常量下找到。