我正在尝试用rest-client
宝石阅读400响应的正文。问题是rest-client
通过将其作为错误来回应400,所以我无法找出任何获取正文的方法。
这是一个激励性的例子。考虑这个对facebook图谱API的调用:
JSON.parse(RestClient.get("https://graph.facebook.com/me?fields=id,email,first_name,last_name&access_token=#{access_token}"))
如果access_token
过期或无效,facebook会做两件事:
{
"error": {
"message": "The access token could not be decrypted",
"type": "OAuthException",
"code": 190
}
}
因为400响应会引发错误,所以我无法弄清楚如何获得响应的正文。也就是说,例如,如果我在卷曲或浏览器中运行上面的GET请求,我可以看到正文,但我无法弄清楚如何在restclient中访问它。这是一个例子:
begin
fb_response = JSON.parse(RestClient.get("https://graph.facebook.com/me?fields=id,email,first_name,last_name&access_token=#{access_token}"))
rescue => e
# 400 response puts me here
# How can I get the body of the above response now, so I can get details on the error?
# eg, was it an expired token? A malformed token? Something else?
end
答案 0 :(得分:22)
<强>例外强>
对于其他情况,将引发保存Response的RestClient :: Exception;将针对已知错误代码抛出特定的异常类
begin
RestClient.get 'http://example.com/resource'
rescue => e
e.response
end
您可以重写代码,如:
body = begin
RestClient.get("https://graph.facebook.com/me?fields=id,email,first_name,last_name&access_token=#{access_token}")
rescue => e
e.response.body
end
fb_response = JSON.parse(body)
或者只是使用RestClient::Exception#http_body从异常中获取响应正文。 (这只是一条捷径)。