mirror of
https://github.com/elyby/oauth2-server.git
synced 2024-12-28 16:00:24 +05:30
fix for thephpleague/oauth2-server#389
This commit is contained in:
parent
c5db707e69
commit
55c8df8312
@ -132,6 +132,8 @@ class OAuthException extends \Exception
|
|||||||
$authScheme = 'Bearer';
|
$authScheme = 'Bearer';
|
||||||
} elseif (strpos($authHeader, 'Basic') === 0) {
|
} elseif (strpos($authHeader, 'Basic') === 0) {
|
||||||
$authScheme = 'Basic';
|
$authScheme = 'Basic';
|
||||||
|
} elseif (strpos($authHeader, 'MAC') === 0) {
|
||||||
|
$authScheme = 'MAC';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user