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
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
3条答案
按热度按时间fsi0uk1n1#
HTTParty::Response的示例有一个
code
属性,该属性包含HTTP响应的状态代码。它是以整数形式给出的。所以,大概是这样的:h5qlskok2#
**此答案解决了连接故障。**如果找不到URL,状态代码将不会对您有所帮助。像这样拯救它:
有关详细信息,请参阅:this github issue
iyr7buue3#
您还可以使用像
success?
或bad_gateway?
这样方便的 predicate 方法,如下所示:可以在
Rack::Utils::SYMBOL_TO_STATUS_CODE
常量下找到可能的响应的完整列表。