# File lib/omniauth/strategies/oauth/t163.rb, line 13
      def initialize(app, consumer_key=nil, consumer_secret=nil, options={}, &block)
        @api_key = consumer_key
        client_options = {
          :access_token_path => '/oauth/access_token',
          :authorize_path => '/oauth/authenticate',
          :realm => 'OmniAuth',
          :request_token_path => '/oauth/request_token',
          :site => 'http://api.t.163.com',
        }
        super(app, :t163, consumer_key, consumer_secret, client_options, options, &block)
      end