flownative / flow-openidconnect-client

OpenID Connect Client SDK for Flow Framework
MIT License
6 stars 8 forks source link

Possible bug in OpenIdConnectToken #60

Open lorenzulrich opened 10 months ago

lorenzulrich commented 10 months ago

I'm just browsing through the code of the Token and I'm asking myself why we have

$this->authorizationHeader = $httpRequest->getHeader('Authorization');

at https://github.com/flownative/flow-openidconnect-client/blob/0e0c4cd785b504d2d5388a6b5fcbe8902962c843/Classes/Authentication/OpenIdConnectToken.php#L55

and not

$this->authorizationHeader = $httpRequest->getHeader('authorization');

Is this just an error or don't I get it?