1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
|
=begin
From jwhitmire
Todd, I'm trying to use curb to post data to a REST url. We're using it to post support questions from our iphone app directly to tender. The post looks good to me, but curl is not adding the content-length header so I get a 411 length required response from the server.
Here's my post block, do you see anything obvious? Do I need to manually add the Content-Length header?
c = Curl::Easy.http_post(url) do |curl|
curl.headers["User-Agent"] = "Curl/Ruby"
if user
curl.headers["X-Multipass"] = user.multipass
else
curl.headers["X-Tender-Auth"] = TOKEN
end
curl.headers["Accept"] = "application/vnd.tender-v1+json"
curl.post_body = params.map{|f,k| "#{curl.escape(f)}=#{curl.escape(k)}"}.join('&')
curl.verbose = true
curl.follow_location = true
curl.enable_cookies = true
end
Any insight you care to share would be helpful. Thanks.
=end
require File.expand_path(File.join(File.dirname(__FILE__), 'helper'))
class BugCurbEasyPostWithStringNoContentLengthHeader < Test::Unit::TestCase
include BugTestServerSetupTeardown
def test_bug_workaround
params = {:cat => "hat", :foo => "bar"}
post_body = params.map{|f,k| "#{Curl::Easy.new.escape(f)}=#{Curl::Easy.new.escape(k)}"}.join('&')
c = Curl::Easy.http_post("http://127.0.0.1:#{@port}/test",post_body) do |curl|
curl.headers["User-Agent"] = "Curl/Ruby"
curl.headers["X-Tender-Auth"] = "A Token"
curl.headers["Accept"] = "application/vnd.tender-v1+json"
curl.follow_location = true
curl.enable_cookies = true
end
end
def test_bug
params = {:cat => "hat", :foo => "bar"}
c = Curl::Easy.http_post("http://127.0.0.1:#{@port}/test") do |curl|
curl.headers["User-Agent"] = "Curl/Ruby"
curl.headers["X-Tender-Auth"] = "A Token"
curl.headers["Accept"] = "application/vnd.tender-v1+json"
curl.post_body = params.map{|f,k| "#{curl.escape(f)}=#{curl.escape(k)}"}.join('&')
curl.follow_location = true
curl.enable_cookies = true
end
end
end
|