SET_PERSISTENT_CREDETIALS Procedure Signature 1

This procedure sets Client ID and Client Secret for a given credential. Typically used for the OAuth2 Client Credentials flow. The new credentials are stored persistently and are valid for all current and future sessions.

Syntax

procedure set_persistent_credentials(
    p_credential_static_id  in varchar2,
    p_client_id             in varchar2,
    p_client_secret         in varchar2 );

Parameters

Table 8-2 SET_PERSISTENT_CREDETIALS Procedure Signature 1 Parameters

Parameters Description

p_credential_static_id

The credential static ID.

p_client_id

The OAuth2 Client ID.

p_client_secret

The OAuth2 Client Secret

Example

The following example sets credential OAuth Login.

begin
    apex_credential.set_persistent_credentials (
    p_credential_static_id  => 'OAuth Login',
    p_client_id             => 'dnkjq237o8832ndj98098-..',
    p_client_secret         => '1278672tjksaGSDA789312..' );
end;