我正在尝试使用带有 Ruby on Rails 的 OAuth gem 获取 Evernote 请求令牌:
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
这可能是什么原因造成的?