We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When looking through the source code of the las2peer node fronten, I stumbled upon the following line
'Basic ' + btoa(prefixedIdentifier + ':' + credentials.oidcSub),
when setting the Authorization header when logging in (see here ) Isnt this wrong? The way I see it the authorization Header would have the form
'Basic ' + btoa('OIDC_SUB'+<your sub>+':'+<your sub>),
but shouldn't it be:
'Basic ' + btoa(<your username>+':'+<your sub>),
@AlexanderNeumann
The text was updated successfully, but these errors were encountered:
lakhoune
Aran30
No branches or pull requests
When looking through the source code of the las2peer node fronten, I stumbled upon the following line
when setting the Authorization header when logging in (see here )
Isnt this wrong? The way I see it the authorization Header would have the form
but shouldn't it be:
@AlexanderNeumann
The text was updated successfully, but these errors were encountered: