httpparty で送信されたリクエストをログに記録するにはどうすればよいですか?
HTTParty.post(
@application_url,
:headers => {
"Accept" => "application/json",
"Content-Type" => "application/json; charset=utf-8"
},
:body => {
"ApplicationProfileId" => application.applicationProfileId
}.to_json
)
debug_output をクラス レベルで使用します。
class Foo
include HTTParty
debug_output $stdout
end
またはリクエストごとに
response = HTTParty.post(url, :body => body, :debug_output => $stdout)