2 operation(s). Part of the API index.
Call these as client.<service>.<method>(...). <service> is the client field for this
group — the README lists the field name for every service.
These pages group operations the way the OpenAPI specification tags them, which
is not always one field per page.
GET /api/jwt/{JwtAppName}/token
Retrieve JWT token by Access Token
Retrieves a JWT token using an Access Token obtained after successful login.
public static void callGetJWTTokenByAccessToken(LoginRadiusClient client) {
String jwtAppName = "<jwtAppName>"; //Required
String nonce = "<nonce>"; //Optional
try {
var response = client.jwt.getJWTTokenByAccessToken(jwtAppName, nonce);
System.out.println(response);
} catch (ApiException e) {
LoginRadiusException lr = LoginRadiusClient.toLoginRadiusException(e);
System.err.println(lr.description());
}
}| Name | In | Type | Required | Description |
|---|---|---|---|---|
JwtAppName |
path | string | yes | JWT App Name |
Nonce |
query | string | no | random nonce claim |
JWTSignature
POST /api/jwt/{JwtAppName}/login
Retrieve JWT token
Retrieves a JWT token using login credentials such as Email, Phone, Username, and Password.
public static void callGetJWTTokenByLoginCredentials(LoginRadiusClient client) {
String jwtAppName = "<jwtAppName>"; //Required
GetJWTTokenByLoginCredentialsRequest getJWTTokenByLoginCredentialsRequest = new GetJWTTokenByLoginCredentialsRequest(); //Required
String nonce = "<nonce>"; //Optional
try {
var response = client.jwt.getJWTTokenByLoginCredentials(jwtAppName, getJWTTokenByLoginCredentialsRequest, nonce);
System.out.println(response);
} catch (ApiException e) {
LoginRadiusException lr = LoginRadiusClient.toLoginRadiusException(e);
System.err.println(lr.description());
}
}| Name | In | Type | Required | Description |
|---|---|---|---|---|
JwtAppName |
path | string | yes | JWT App Name |
Nonce |
query | string | no | random nonce claim |
object as application/json.
JWTSignature