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 |
---|---|
|
The credential static ID. |
|
The OAuth2 Client ID. |
|
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;
Parent topic: APEX_CREDENTIAL