# File lib/omniauth/strategies/oauth2/we_pay.rb, line 13
      def initialize(app, client_id=nil, client_secret=nil, options={}, &block)
        client_options = {
          :authorize_url => 'https://www.wepay.com/session/authorize',
          :token_url => 'https://wepayapi.com/v1/oauth2/token',
        }
        super(app, :we_pay, client_id, client_secret, client_options, options, &block)
      end