59.23 OAUTH_SET_TOKEN Procedure
This procedure sets the OAuth access token to be used in subsequent MAKE_REST_REQUEST
calls. This procedure can be used to set a token which was obtained by different means than with OAUTH_AUTHENTICATE
(such as custom code).
Syntax
APEX_WEB_SERVICE.OAUTH_SET_TOKEN (
p_token IN VARCHAR2,
p_expires IN DATE DEFAULT NULL );
Parameters
Parameter | Description |
---|---|
p_token |
The OAuth access token to be used by MAKE_REST_REQUEST calls.
|
p_expires |
(Optional) The token expiry date. If NULL, no expiration date is set. |
Example
BEGIN
apex_web_service.oauth_set_token(
p_token => '{oauth access token}'
);
END;
Parent topic: APEX_WEB_SERVICE