mirror of
https://github.com/elyby/oauth2-server.git
synced 2024-12-29 00:10:43 +05:30
Wrapped getallheaders() method in function_exists (function isn't available on command line)
This commit is contained in:
parent
87ec05dba6
commit
465c1c6ab2
@ -127,13 +127,15 @@ class Server
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Try and get an access token from the auth header
|
// Try and get an access token from the auth header
|
||||||
$headers = getallheaders();
|
if (function_exists('getallheaders')) {
|
||||||
if (isset($headers['Authorization'])) {
|
$headers = getallheaders();
|
||||||
|
if (isset($headers['Authorization'])) {
|
||||||
|
|
||||||
$rawToken = trim(str_replace('Bearer', '', $headers['Authorization']));
|
$rawToken = trim(str_replace('Bearer', '', $headers['Authorization']));
|
||||||
if ( ! empty($rawToken))
|
if ( ! empty($rawToken))
|
||||||
{
|
{
|
||||||
$accessToken = base64_decode($rawToken);
|
$accessToken = base64_decode($rawToken);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user