Merge pull request #429 from Bobselp/master

Add MAC Authentication to OAuthException->getHttpHeaders
This commit is contained in:
Alex Bilbie 2016-01-17 14:57:45 +00:00
commit abaf399f5f

View File

@ -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';
} }
} }
} }