Loading TOC...

sec.externalSecuritySetOauthJwtAlg

sec.externalSecuritySetOauthJwtAlg(
   external-security-name as String,
   new-oauth-jwt-alg as String
) as null

Summary

This function updates the OAuth JWT signature algorithm for the given external security object. The inputted JWT alg value must be HS256 or RS256.

Parameters
external-security-name Name of the external security object.
new-oauth-jwt-alg The new OAuth JWT alg value.

Required Privileges

http://marklogic.com/xdmp/privileges/external-security-set-oauth-jwt-alg

Usage Notes

This function must be executed against the security database.

Example



declareUpdate();
const sec = require('MarkLogic/security');

sec.externalSecuritySetOauthJwtAlg('oauthconfig', 'RS256');

    

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