HTTP_AUTHORIZATION should be enough

This commit is contained in:
Michael 2021-05-12 12:34:55 +00:00
parent b2fe039dab
commit 4a6d33e182
1 changed files with 0 additions and 1 deletions

View File

@ -187,7 +187,6 @@ class BaseApi extends BaseModule
private static function getUserByBearer()
{
$authorization = $_SERVER['HTTP_AUTHORIZATION'] ?? '';
$authorization = $_SERVER['AUTHORIZATION'] ?? $authorization;
if (substr($authorization, 0, 7) != 'Bearer ') {
return 0;