From: boo boo Date: 2011-03-09T03:25:09+09:00 Subject: Re: http post and authorization header for twitter Thanks for the reply! So i tried that code and got this error: "Failed to validate oauth signature and token". Here is my code: url = URI.parse("https://api.twitter.com/oauth/request_token") http = Net::HTTP.new(url.host, url.port) http.use_ssl = true resp = http.post(url.path, nil, @headers) Any ideas? Am I putting the headers in the right place? -- Posted via http://www.ruby-forum.com/.