We can authenticate with the registry as a particular entity to perform operations like retrieving, searching, updating and attesting.
To authenticate as an entity, we need to make the following request:
POST /auth/realms/{realm}/protocol/openid-connect/token
Field | In | Type | Description |
---|---|---|---|
content-type |
header | string |
Set to application/x-www-form-urlencoded |
client_id |
body | string |
Set to registry-frontend |
username |
body | string |
The _osConfig.ownershipAttributes.userId of the entity according to the schema |
password |
body | string |
Set to opensaber@123 (default password, specified in registry config/docker compose file) |
grant_type |
body | string |
Set to password |
This API call should return a JSON object as follows:
{
"access_token": "eyJhbGciOiJSUzI1NiIsInR5cCIgOiAiSldUIiwia2lk...2cSSaBKuB58I2OYDGw",
"expires_in": 300,
"not-before-policy": 0,
"refresh_expires_in": 1800,
"refresh_token": "eyJhbGciOiJIUzI1NiIsInR5cCIgOiAiSldUIiwia2lk...9HulwVv12bBDUdU_nidZXo",
"scope": "email profile",
"session_state": "300f8a46-e430-4fd6-92aa-a2d337d7343e",
"token_type": "Bearer"
}
Important variables in the response body:
Field | In | Type | Description |
---|---|---|---|
access_token |
body | string |
Access token used to retrieve/update entity |
expires_in |
body | number |
Number of seconds before the access token will be declared invalid |
token_type |
body | string |
Should be Bearer , else we have gotten the wrong token |
scope |
body | string |
Using this token, what information we can access about the entity |
curl --location \
--request POST \
--header 'content-type: application/x-www-form-urlencoded' \
--data 'client_id=registry-frontend' \
--data 'username={username}' \
--data 'password=opensaber@123' \
--data 'grant_type=password' \
'http://{keycloak-url}/auth/realms/{realm}/protocol/openid-connect/token'
http --form post \
'http://{keycloak-url}/auth/realms/{realm}/protocol/openid-connect/token' \
'content-type: application/x-www-form-urlencoded' \
'client_id=registry-frontend' \
'username={username}' \
'password=opensaber@123' \
'grant_type=password'