SET_SESSION_CREDENTIALS Procedure Signature2

This procedure sets Client ID and Client Secret for a given credential for the current session. Typically used for the OAuth2 Client Credentials flow.

Syntax

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

Parameters

Table 8-6 SET_SESSION_CREDENTIALS Procedure Signature2 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_session_credentials (
        p_credential_static_id => 'OAuth Login',
        p_client_id            => 'dnkjq237o8832ndj98098-..',
        p_client_secret        => '1278672tjksaGSDA789312..' );
end;