web-dev-qa-db-ja.com

httparty:リクエストを記録する方法?

Httpartyで送信されるリクエストをログに記録するにはどうすればよいですか?

HTTParty.post(
          @application_url,
          :headers => {
            "Accept"        => "application/json",
            "Content-Type"  => "application/json; charset=utf-8"
          },
          :body => {
            "ApplicationProfileId" => application.applicationProfileId
          }.to_json
        )
25
Eric Francis

使用する - debug_output クラスレベル:

class Foo
  include HTTParty
  debug_output $stdout
end

またはリクエストごと

response = HTTParty.post(url, :body => body, :debug_output => $stdout)
47
Brian Low

クラスレベルを使用 debug_output デバッグ情報が送信される出力ストリームを設定するメソッド。

4
user229044

組み込みのロガーを使用できます。

my_logger = Rails.logger || Logger.new # use what you like
my_logger.info "The default formatter is :Apache. The :curl formatter can also be used."
my_logger.info "You can tell which method to call on the logger too. It is info by default."

HTTParty.get "http://google.com", logger: my_logger, log_level: :debug, log_format: :curl
2
Dende