mirror of
https://github.com/elyby/oauth2-server.git
synced 2025-01-24 04:22:07 +05:30
Merge pull request #429 from Bobselp/master
Add MAC Authentication to OAuthException->getHttpHeaders
This commit is contained in:
commit
abaf399f5f
@ -132,6 +132,8 @@ class OAuthException extends \Exception
|
||||
$authScheme = 'Bearer';
|
||||
} elseif (strpos($authHeader, 'Basic') === 0) {
|
||||
$authScheme = 'Basic';
|
||||
} elseif (strpos($authHeader, 'MAC') === 0) {
|
||||
$authScheme = 'MAC';
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user