From: 7stud -- Date: 2011-03-09T04:45:46+09:00 Subject: Re: http post and authorization header for twitter boo boo wrote in post #986243: > here are my headers. am i doing this correctly? > > @headers = { 'oauth_nonce' => @current_nonce, > 'oauth_callback' => @encoded_callback, > 'oauth_signature_method' => "HMAC-SHA1", > 'oauth_timestamp' => @current_timestamp, > 'oauth_consumer_key' => @oauth_consumer_key, > 'oauth_signature' => @encoded_oauth_sig, > 'oauth_version' => "1.0"} Those don't look like http headers. Http headers look like "Content-Type", "Cookie", etc. You said you need to POST the request. Is that data you are supposed to send in the body of the request? -- Posted via http://www.ruby-forum.com/.