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

        super(app, :evernote, consumer_key, consumer_secret, client_options, options, &block)
      end