pub async fn issue_jwt_with_id(
configuration: &Configuration,
application_id: Option<&str>,
refresh_token: Option<&str>,
) -> Result<IssueResponse, Error<IssueJwtWithIdError>>
Expand description
Issue a new access token (JWT) for the requested Application after ensuring the provided JWT is valid. A valid access token is properly signed and not expired.
This API may be used in an SSO configuration to issue new tokens for another application after the user has obtained a valid token from authentication.