我如何处理HTTParty的错误?

r7s23pms  于 2022-10-15  发布在  Ruby
关注(0)|答案(3)|浏览(111)

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

fsi0uk1n

fsi0uk1n1#

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
h5qlskok

h5qlskok2#

**此答案解决了连接故障。**如果找不到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

iyr7buue

iyr7buue3#

您还可以使用像success?bad_gateway?这样方便的 predicate 方法,如下所示:

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

可以在Rack::Utils::SYMBOL_TO_STATUS_CODE常量下找到可能的响应的完整列表。

相关问题