我正在开发一个使用 HTTParty 发出 HTTP 请求的 Rails 应用程序。如何使用 HTTParty 处理 HTTP 错误?具体来说,我需要捕获 HTTP 502 和 503 以及其他错误,例如连接被拒绝和超时错误。
HTTPParty::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
This answer addresses connection failures. 如果找不到 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
有关更多信息,请参阅:this github issue
您还可以像这样使用像
ok?
或bad_gateway?
这样方便的谓词方法:
response = HTTParty.post(uri, options)
response.success?
Rack::Utils::HTTP_STATUS_CODES
常量下找到。