401 status is for invalid_token, not insufficient_scope

This commit is contained in:
Woody Gilk
2014-07-11 11:59:18 -05:00
parent 4480aa3456
commit f34dd4a0cb
2 changed files with 3 additions and 3 deletions

View File

@@ -163,7 +163,7 @@ class Resource
// include the "WWW-Authenticate" response header field
// matching the authentication scheme used by the client.
// @codeCoverageIgnoreStart
if ($error === 'insufficient_scope') {
if ($error === 'invalid_token') {
$authScheme = null;
$request = new Request();
if ($request->server('PHP_AUTH_USER') !== null) {