# File lib/omniauth/strategies/oauth/netflix.rb, line 12
      def initialize(app, consumer_key=nil, consumer_secret=nil, options={}, &block)
        client_options = {
          :access_token_path => '/oauth/access_token',
          :authorize_url => 'https://api-user.netflix.com/oauth/login',
          :request_token_path => '/oauth/request_token',
          :site => 'http://api.netflix.com',
        }
        super(app, :netflix, consumer_key, consumer_secret, client_options, options, &block)
      end