We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
It seems like the default Authorization header format for an HTTP request is of the form:
Authorization
Authorization: Bearer realm="scitokens.org" ${token}
Is this codified somewhere? Is it safe to assume?
The text was updated successfully, but these errors were encountered:
Good question. https://tools.ietf.org/html/rfc6750#section-2.1 says the request should be "Bearer" 1*SP b64token and I think realm only belongs in the response, not the request.
"Bearer" 1*SP b64token
realm
Sorry, something went wrong.
Good enough for me, thanks!
No branches or pull requests
It seems like the default
Authorization
header format for an HTTP request is of the form:Authorization: Bearer realm="scitokens.org" ${token}
Is this codified somewhere? Is it safe to assume?
The text was updated successfully, but these errors were encountered: