Re: [OAUTH-WG] couple minor spec issues

Eran Hammer-Lahav <eran@hueniverse.com> Mon, 15 August 2011 06:40 UTC

Return-Path: <eran@hueniverse.com>
X-Original-To: oauth@ietfa.amsl.com
Delivered-To: oauth@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id C345C21F857D for <oauth@ietfa.amsl.com>; Sun, 14 Aug 2011 23:40:28 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.561
X-Spam-Level:
X-Spam-Status: No, score=-2.561 tagged_above=-999 required=5 tests=[AWL=0.038, BAYES_00=-2.599]
Received: from mail.ietf.org ([12.22.58.30]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id lSoKjP8BixyZ for <oauth@ietfa.amsl.com>; Sun, 14 Aug 2011 23:40:27 -0700 (PDT)
Received: from p3plex1out02.prod.phx3.secureserver.net (p3plex1out02.prod.phx3.secureserver.net [72.167.180.18]) by ietfa.amsl.com (Postfix) with SMTP id D2C7521F8574 for <oauth@ietf.org>; Sun, 14 Aug 2011 23:40:27 -0700 (PDT)
Received: (qmail 3894 invoked from network); 15 Aug 2011 06:41:11 -0000
Received: from unknown (HELO smtp.ex1.secureserver.net) (72.167.180.19) by p3plex1out02.prod.phx3.secureserver.net with SMTP; 15 Aug 2011 06:41:11 -0000
Received: from P3PW5EX1MB01.EX1.SECURESERVER.NET ([10.6.135.19]) by P3PW5EX1HT001.EX1.SECURESERVER.NET ([72.167.180.19]) with mapi; Sun, 14 Aug 2011 23:41:11 -0700
From: Eran Hammer-Lahav <eran@hueniverse.com>
To: OAuth WG <oauth@ietf.org>
Date: Sun, 14 Aug 2011 23:40:00 -0700
Thread-Topic: couple minor spec issues
Thread-Index: AQHMS6QtMsuj60qNLUK/U1Pu7gq3j5UAReQAgB1IzxCAAAXHYA==
Message-ID: <90C41DD21FB7C64BB94121FBBC2E7234502498CDDC@P3PW5EX1MB01.EX1.SECURESERVER.NET>
References: <CA543FC3.1FDCA%clucas@e-miles.com> <CA559080.20043%clucas@e-miles.com> <90C41DD21FB7C64BB94121FBBC2E7234502498CDD8@P3PW5EX1MB01.EX1.SECURESERVER.NET>
In-Reply-To: <90C41DD21FB7C64BB94121FBBC2E7234502498CDD8@P3PW5EX1MB01.EX1.SECURESERVER.NET>
Accept-Language: en-US
Content-Language: en-US
X-MS-Has-Attach:
X-MS-TNEF-Correlator:
acceptlanguage: en-US
Content-Type: text/plain; charset="us-ascii"
Content-Transfer-Encoding: quoted-printable
MIME-Version: 1.0
Subject: Re: [OAUTH-WG] couple minor spec issues
X-BeenThere: oauth@ietf.org
X-Mailman-Version: 2.1.12
Precedence: list
List-Id: OAUTH WG <oauth.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/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: Mon, 15 Aug 2011 06:40:28 -0000

> On 7/26/11 9:56 AM, "Casey Lucas" <clucas@e-miles.com> wrote:

> 2. Section 6 Refreshing an Access Token seems to conflict with itself
> concerning token scope:
> 
> "The requested scope MUST be equal or lesser than the scope originally
> granted by the resource owner, and if omitted is treated as equal to the
> scope originally granted by the resource owner."
> 
> 
> Yet the last sentence in that section states:
> 
> "If a new refresh token is issued, its scope MUST be identical to that of the
> refresh token included in the request."

The identical scope is only for the refresh token, not the access token being refreshed. Clarified:

        If a new refresh token is issued, the refresh token scope MUST be identical to that of the
        refresh token included by the client in the request.

EHL