
sec.externalSecurityAddOauthJwtSecrets( external-security-name as String, new-oauth-jwt-key-ids as String, new-oauth-jwt-secret-values as String ) as null
This function adds the list of JWT key-ID/key pairs into the given external security object. The inputted key-IDs must be unique and not exist in the given external security object.
| Parameters | |
|---|---|
| external-security-name | Name of the external security object. |
| new-oauth-jwt-key-ids | The new list of OAuth key-IDs. |
| new-oauth-jwt-secret-values | The new list of OAuth keys. |
http://marklogic.com/xdmp/privileges/external-security-add-oauth-jwt-secrets
This function must be executed against the security database.
declareUpdate();
const sec = require('MarkLogic/security');
sec.externalSecurityAddOauthJwtSecrets('oauthconfig', ("keyID1", "keyID2"), ("JWTKey1", "JWTKey2"));
Stack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.