flownative / flow-openidconnect-client

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

Fix AuthenticationRequiredException if Basic-Auth is used #57

Closed etlam closed 1 year ago

etlam commented 1 year ago

If your neos uses a Basic Auth (for example your staging instance of neos) this leads to a AuthenticationRequiredException Could not extract access token from Authorization header: "Bearer" keyword is missing exception.
We changed the source code to prevent the extraction of the identity token from the authorization header if it does not contain a bearer token.

@robertlemke