APEX_WEB_SERVICE.MAKE_REST_REQUEST Calling OIC
Hello Everyone!
I have a situation, I have been using the APEX_WEB_SERVICE.MAKE_REST_REQUEST with the POST method(REST Call) to run the token based OIC Pooler integration.
When we execute the PLSQL programme below, the OIC integration is kicking in OIC tool, however it throws an error at the first level. with out providing any error messgae.
SET SERVEROUTPUT ON
DECLARE
l_clob CLOB;
BEGIN
apex_web_service.g_request_headers(1).name := 'Authorization';
apex_web_service.g_request_headers(1).value := 'Bearer eyJ4NXQjXXXXXXXXXXXXXXXXXX';--> token value Passing
apex_web_service.g_request_headers(1).name := 'Accept';
apex_web_service.g_request_headers(1).value := 'application/json';
0