MarkLogic 12 EA 1 Product Documentation
sec.externalSecuritySetOauthJwtIssuerUri

sec.externalSecuritySetOauthJwtIssuerUri(
   external-security-name as String,
   new-oauth-jwt-issuer-uri as String
) as null

Summary

This function updates the OAuth JWT issuer URI for the given external security object.

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

Required Privileges

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

Usage Notes

This function must be executed against the security database.

Example



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

sec.externalSecuritySetOauthJwtIssuerUri('oauthconfig', 'https://idp.example.com/issuer');

    
Powered by MarkLogic Server | Terms of Use | Privacy Policy