sec.externalSecuritySetOauthRedirectUri

sec.externalSecuritySetOauthRedirectUri(
   external-security-name as String,
   new-oauth-redirect-uri as String
) as null

Summary

This function updates the OAuth redirect uri for the given external security object.

Parameters
external-security-name Name of the external security object.
new-oauth-redirect-uri The new OAuth redirect uri value.

Required Privileges

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

Usage Notes

This function must be executed against the security database.

Example



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

sec.externalSecuritySetOauthRedirectUri('oauthconfig', 'https://marklogic.com');

    
Powered by MarkLogic Server | Terms of Use | Privacy Policy