sec:external-security-set-oauth-jwt-secrets( $external-security-name as xs:string, $new-oauth-jwt-key-ids as xs:string, $new-oauth-jwt-secret-values as xs:string ) as empty-sequence()
This function sets the OAuth JWT secrets for the given external security object. The number of inputted key-IDs and keys must be equal and non-empty. The inputted key-IDs should be unique.
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-set-oauth-jwt-secrets
This function must be executed against the security database.
xquery version "1.0-ml"; import module namespace sec = "http://marklogic.com/xdmp/security" at "/MarkLogic/security.xqy"; sec:external-security-set-oauth-jwt-secrets("oauthconfig", ("keyID1", "keyID2"), ("JWTKey1", "JWTKey2"));
Stack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.