mirror of
https://github.com/elyby/oauth2-server.git
synced 2025-05-31 14:12:07 +05:30
Wrapped getallheaders() method in function_exists (function isn't available on command line)
This commit is contained in:
@@ -127,6 +127,7 @@ class Server
|
||||
}
|
||||
|
||||
// Try and get an access token from the auth header
|
||||
if (function_exists('getallheaders')) {
|
||||
$headers = getallheaders();
|
||||
if (isset($headers['Authorization'])) {
|
||||
|
||||
@@ -136,6 +137,7 @@ class Server
|
||||
$accessToken = base64_decode($rawToken);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if ($accessToken) {
|
||||
|
||||
|
Reference in New Issue
Block a user