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"}
--
Posted via http://www.ruby-forum.com/.