Re: [OAUTH-WG] What to do about 'realm'

Eran Hammer-Lahav <eran@hueniverse.com> Sun, 11 July 2010 13:02 UTC

Return-Path: <eran@hueniverse.com>
X-Original-To: oauth@core3.amsl.com
Delivered-To: oauth@core3.amsl.com
Received: from localhost (localhost [127.0.0.1]) by core3.amsl.com (Postfix) with ESMTP id 64E393A65A5 for <oauth@core3.amsl.com>; Sun, 11 Jul 2010 06:02:39 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.318
X-Spam-Level:
X-Spam-Status: No, score=-2.318 tagged_above=-999 required=5 tests=[AWL=0.281, BAYES_00=-2.599]
Received: from mail.ietf.org ([64.170.98.32]) by localhost (core3.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id nvwRb4xcRxri for <oauth@core3.amsl.com>; Sun, 11 Jul 2010 06:02:38 -0700 (PDT)
Received: from p3plex1out02.prod.phx3.secureserver.net (p3plex1out02.prod.phx3.secureserver.net [72.167.180.18]) by core3.amsl.com (Postfix) with SMTP id F2D863A6880 for <oauth@ietf.org>; Sun, 11 Jul 2010 06:02:37 -0700 (PDT)
Received: (qmail 19525 invoked from network); 11 Jul 2010 13:02:44 -0000
Received: from unknown (HELO smtp.ex1.secureserver.net) (72.167.180.20) by p3plex1out02.prod.phx3.secureserver.net with SMTP; 11 Jul 2010 13:02:44 -0000
Received: from P3PW5EX1MB01.EX1.SECURESERVER.NET ([10.6.135.20]) by P3PW5EX1HT002.EX1.SECURESERVER.NET ([72.167.180.20]) with mapi; Sun, 11 Jul 2010 06:02:44 -0700
From: Eran Hammer-Lahav <eran@hueniverse.com>
To: Brian Eaton <beaton@google.com>
Date: Sun, 11 Jul 2010 06:01:43 -0700
Thread-Topic: [OAUTH-WG] What to do about 'realm'
Thread-Index: Acsg+VqLkLuB+ScUT9yb7XNv1DDvvA==
Message-ID: <19C8AB8C-CC69-473C-95D2-DD774302B3C6@hueniverse.com>
References: <90C41DD21FB7C64BB94121FBBC2E72343B3EC84ADE@P3PW5EX1MB01.EX1.SECURESERVER.NET> <AANLkTikLogvJAhE9LF60MDyEiqvpDM8WD8tSUr4fZLjP@mail.gmail.com>
In-Reply-To: <AANLkTikLogvJAhE9LF60MDyEiqvpDM8WD8tSUr4fZLjP@mail.gmail.com>
Accept-Language: en-US
Content-Language: en-US
X-MS-Has-Attach:
X-MS-TNEF-Correlator:
acceptlanguage: en-US
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: base64
MIME-Version: 1.0
Cc: "OAuth WG (oauth@ietf.org)" <oauth@ietf.org>
Subject: Re: [OAUTH-WG] What to do about 'realm'
X-BeenThere: oauth@ietf.org
X-Mailman-Version: 2.1.9
Precedence: list
List-Id: OAUTH WG <oauth.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/listinfo/oauth>, <mailto:oauth-request@ietf.org?subject=unsubscribe>
List-Archive: <http://www.ietf.org/mail-archive/web/oauth>
List-Post: <mailto:oauth@ietf.org>
List-Help: <mailto:oauth-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/oauth>, <mailto:oauth-request@ietf.org?subject=subscribe>
X-List-Received-Date: Sun, 11 Jul 2010 13:02:39 -0000

You mean the syntax used by most HTTP headers? There is clearly a need for adding extensions.

EHL

On Jul 11, 2010, at 2:55, Brian Eaton <beaton@google.com> wrote:

> On Sun, Jun 27, 2010 at 6:51 PM, Eran Hammer-Lahav <eran@hueniverse.com> wrote:
>> 1. Leave it as required under the definition of RFC 2617 (i.e. provide no
>> help, developers will need to ready 2617 and figure out what to do with it).
>> 
>> 2. Update 2617 to remove the requirement – this is not going to be easy or
>> possible to predict success.
>> 
>> 3. Provide specific guidance as to what to do with the realm parameter.
>> 
>> 4. Something else.
> 
> Let's do something else.
> 
> We've made great progress on simplifying the spec and unifying the
> different formats to minimize the number of parsers and serializers
> that are needed.  The www-authenticate header is one of the bits of
> nastiness left.
> 
> Let's use a format like this:
> 
> WWW-Authenticate: OAuth2 base64(<json>)
> 
> Or even just:
> 
> WWW-Authenticate: OAuth2
> 
> Seriously.
> 
> There is some precedent for this.  The Negotiate and NTLM schemes
> ditched the name="value" syntax, and they are widely implemented.
> This demonstrates two things:
> 1) dropping the name="value" syntax won't break the internet, because
> widely deployed schemes have already done it.
> 2) "realm" is not necessary in order to have a successful
> authentication protocol.
> 
> As far as I can tell, there is no good reason for RFC 2617 to specify
> the syntax it does.  It's convenient for digest auth, and kind of a
> pain everywhere else.
> 
> So let's just drop it.
> 
> Cheers,
> Brian