# File lib/omniauth/strategies/oauth/evernote.rb, line 15 def initialize(app, consumer_key=nil, consumer_secret=nil, options={}, &block) client_options = { :access_token_path => '/oauth', :authorize_path => '/OAuth.action', :oauth_signature_method => 'PLAINTEXT', :request_token_path => '/oauth', :site => 'https://www.evernote.com', } super(app, :evernote, consumer_key, consumer_secret, client_options, options, &block) end