我試圖使用與Ruby on Rails的OAuth的寶石來獲得一個Evernote的請求令牌來獲得來自Evernote的一個請求令牌時,401 oauth_signature錯誤:獲取嘗試使用OAuth
customer = OAuth::Consumer.new("consumer_key_here", "consumer_secret_here",{ :site=>"http://sandbox.evernote.com/",:request_token_path => "/oauth",:oauth_signature_method => "PLAINTEXT" })
@request_token = customer.get_request_token
但我得到這個錯誤
OAuth::Unauthorized in PagesController#home
401 oauth_signature
什麼可能導致這種情況?