mirror of
https://github.com/elyby/oauth2-server.git
synced 2024-11-15 17:56:14 +05:30
Merge pull request #167 from lucadegasperi/patch-2
updated calls to proper request methods
This commit is contained in:
commit
be4799edc9
@ -71,10 +71,10 @@ class OAuthException extends \Exception
|
|||||||
if ($this->errorType === 'invalid_client') {
|
if ($this->errorType === 'invalid_client') {
|
||||||
$authScheme = null;
|
$authScheme = null;
|
||||||
$request = new Request();
|
$request = new Request();
|
||||||
if ($request->server('PHP_AUTH_USER') !== null) {
|
if ($request->getUser() !== null) {
|
||||||
$authScheme = 'Basic';
|
$authScheme = 'Basic';
|
||||||
} else {
|
} else {
|
||||||
$authHeader = $request->header('Authorization');
|
$authHeader = $request->headers->get('Authorization');
|
||||||
if ($authHeader !== null) {
|
if ($authHeader !== null) {
|
||||||
if (strpos($authHeader, 'Bearer') === 0) {
|
if (strpos($authHeader, 'Bearer') === 0) {
|
||||||
$authScheme = 'Bearer';
|
$authScheme = 'Bearer';
|
||||||
|
Loading…
Reference in New Issue
Block a user