-
Notifications
You must be signed in to change notification settings - Fork 3
HTTP Basic Authentication
Eliza Margaretha edited this page Mar 31, 2023
·
1 revision
HTTP Basic Authentication is an authentication protocol defining how to encode username and password within HTTP Authorization header. HTTP Authorization header consists of two parts: authorization scheme and authorization parameters.
Authorization: [authorization scheme] [authorization parameters]
For HTTP Basic Authentication, the scheme value is basic
. The authorization parameters should include user credentials in the following format username:password
encoded in Base64.
Authorization: Basic [Base64(username:password)]
Credentials | Value |
---|---|
username | korap-user |
password | user-password |
Base64(username:password) | a29yYXAtdXNlcjp1c2VyLXBhc3N3b3Jk |
The authorization header for the credentials described above:
Authorization: Basic a29yYXAtdXNlcjp1c2VyLXBhc3N3b3Jk
- Importing Kustvakt to Eclipse
- Installing Lombok
- Setting annotation processors
- Setting test environment
- HTTP Basic Authentication
- OAuth2 authorization scopes
- OAuth2 authorization request
- OAuth2 token request
- OAuth2 token revocation
- OAuth2 client registration
- OAuth2 client info
- OAuth2 client deregistration
- OAuth2 client secret reset
- Plugin registration
- Plugin list (marketplace)
- Plugin installation
- Plugin uninstallation
- Installed plugin list
- VC creation and update
- VC deletion
- VC list
- VC info
- VC KoralQuery
- VC statistics
- VC statistics with KoralQuery