2

我正在使用VCR gem 来模拟 HTTP 查询。我已经录制了磁带,但后来我不得不改变一些东西,现在我得到了一个错误:

An HTTP request has been made that VCR does not know how to handle:
  POST http://api.endpoint.here/path.json

现在,因为它是一个 POST 请求,所以 VCR 被配置为匹配那些在 body 和 path 上的请求。我可以记录或转储未处理请求的正文,以便相应地调整磁带吗?谢谢你。

4

1 回答 1

8

回调不能达到你的需要吗?

VCR.configure do |c|
  c.after_http_request do |request, response|
    if request.method == :post
      puts "POST Request:#{request.uri}"
      puts "#{request.to_hash}" # or request.body
    end
  end
  c.allow_http_connections_when_no_cassette = true
end
于 2015-08-18T12:58:04.783 回答