# File lib/omniauth/strategies/github.rb, line 6
      def initialize(app, app_id, app_secret, options = {})
        options[:site] = 'https://github.com/'
        options[:authorize_path] = '/login/oauth/authorize'
        options[:access_token_path] = '/login/oauth/access_token'
        super(app, :github, app_id, app_secret, options)
      end