HTTP Example:GET /admin/realms/{realm}/applications/{app-name}/allowed-origins
|
Returns set of allowed origin. This is used for CORS requests. Access tokens will have
their allowedOrigins claim set to this value for tokens created for this application. - Output:
- Set<String> -
- Produces:
- application/json
|
HTTP Example:PUT /admin/realms/{realm}/applications/{app-name}/allowed-origins
|
Change the set of allowed origins. This is used for CORS requests. Access tokens will have
their allowedOrigins claim set to this value for tokens created for this application. - Input:
- Set<String>
- Output:
- void
- Consumes:
- application/json
|
HTTP Example:DELETE /admin/realms/{realm}/applications/{app-name}/allowed-origins
|
Remove set of allowed origins from current allowed origins list. This is used for CORS requests. Access tokens will have
their allowedOrigins claim set to this value for tokens created for this application. - Input:
- Set<String>
- Output:
- void
- Consumes:
- application/json
|