16.9 SET_PERSISTENT_CREDENTIALS Procedure Signature 3
This procedure sets provided credential attributes persistently beyond the current Oracle APEX session.
Syntax
APEX_CREDENTIAL.SET_PERSISTENT_CREDENTIALS (
p_credential_static_id IN VARCHAR2,
p_key IN VARCHAR2,
p_value IN VARCHAR2 )Parameters
| Parameter | Description |
|---|---|
p_credential_static_id |
Credential static ID. |
p_key |
Credential key (for example, HTTP Header or Cookie name). |
p_value |
Credential value. |
Example
The following example sets attributes into credential my_API_key persistently.
BEGIN
apex_credential.set_persistent_credentials (
p_credential_static_id => 'my_API_key',
p_key => 'api_key',
p_value => 'lsjkgjw4908902ru9fj879q367891hdaw' );
END;Parent topic: APEX_CREDENTIAL