Loading TOC...

sec:external-security-update-oauth-jwt-secrets

sec:external-security-update-oauth-jwt-secrets(
   $external-security-name as xs:string,
   $oauth-jwt-key-ids as xs:string,
   $new-oauth-jwt-secret-values as xs:string
) as empty-sequence()

Summary

This function updates the JWT secrets for the inputted JWT key-IDs in the given external security object. The inputted key-IDs must be unique and exist in the given external security object.

Parameters
external-security-name Name of the external security object.
oauth-jwt-key-ids The list of OAuth key-IDs.
new-oauth-jwt-secret-values The new list of OAuth keys.

Required Privileges

http://marklogic.com/xdmp/privileges/external-security-update-oauth-jwt-secrets

Usage Notes

This function must be executed against the security database.

Example



xquery version "1.0-ml";
import module namespace sec = "http://marklogic.com/xdmp/security" at "/MarkLogic/security.xqy";

sec:external-security-update-oauth-jwt-secrets("oauthconfig", ("keyID1", "keyID2"), ("JWTKey1", "JWTKey2"));

    

Stack Overflow iconStack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.