# File lib/oauth2/authenticator.rb, line 22
    def apply(params)
      case mode.to_sym
      when :basic_auth
        apply_basic_auth(params)
      when :request_body
        apply_params_auth(params)
      else
        raise NotImplementedError
      end
    end