我可以记录未处理的 VCR 请求正文吗?
Can I log the unhandled VCR request body?
我正在使用 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 配置为与正文和路径上的那些相匹配。我可以记录或转储未处理请求的主体,以便我可以相应地调整磁带吗?谢谢。
回调不会实现你所需要的吗?
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
我正在使用 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 配置为与正文和路径上的那些相匹配。我可以记录或转储未处理请求的主体,以便我可以相应地调整磁带吗?谢谢。
回调不会实现你所需要的吗?
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