我打算发送如下请求:
c = Curl::Easy.http_post("https://example.com", json_string
) do |curl|
curl.headers['Accept'] = 'application/json'
curl.headers['Content-Type'] = 'application/json'
curl.headers['Api-Version'] = '2.2'
end
我想记录正在发出的确切 http 请求。有没有办法获取发出的实际请求(基本路径、查询参数、标头和正文)?