Hi,
What we are looking for an REST API to call to get the JWT token.
Like a end point to call with headers, body and private key as attached or anyotherway to get the JWT token dynamically.
Is this available or each time we will have to come here to get the same manually.
Something like below
HEADER:
{“alg”: “RS256”,
“typ”: “JWT”,
“kid”: “”
}
PAYLOAD:
{
“sub”: " ",
“jti”: " ", ---- Any ID
“iat”: 1616667714,
“exp”: 1616807714,
“iss”: " ", — Client ID
“aud”: “https://identity.oraclecloud.com/”
}
Thanks!