Debugging - nov/paypal-express GitHub Wiki
Call Paypal.sandbox! at first.
Since all request/response is via SSL, you can’t use usual TCP tracking tools like tcpflow.
If you need to do so, this code will help you.
In this code,
- 
methodis RPC method (SetExpressCheckout etc.), not HTTP method.
- 
paramsis request body parameters except forMETHODparameter.
- 
responseis response body parameters.
module Paypal
  module NVP
    class Request
      def post_with_debugger(method, params = {})
        response = post_without_debugger(method, params)
        puts <<-DEBUG
#{method}
==========
#{params.to_query}
----------
#{response}
==========
DEBUG
        response
      end
      alias_method_chain :post, :debugger
    end
  end
end