# File lib/restclient/payload.rb, line 106 def build_stream(params = nil) @stream = StringIO.new(Utils.encode_query_string(params)) @stream.seek(0) end
# File lib/restclient/payload.rb, line 111 def headers super.merge({'Content-Type' => 'application/x-www-form-urlencoded'}) end