Skip to Main Content

Portuguese

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.

apex_web_service.make_rest_request

Boa Tarde, estou tendo um problema no Oracle apex, ao tentar usar apex_web_service.make_rest_request.
declare
l_data clob;
l_url clob := 'https://script.google.com/macros/s/AKfycbzdFfsDKqx3MENa_6jAK2BP2Qr6OjS0ieL7Xi8zEEytJHkeq5miqhj7x1vIJ-6iNaCP/exec';
begin
l_data := apex_web_service.make_rest_request(
p_url => l_url,
p_http_method => 'GET'
);
dbms_output.put_line(l_data);
end;
image.pngeste e o erro que esta sendo apresentado. Estou usando o Oracle apex do site mesmo https://apex.oracle.com/pls/apex/.

Comments

Post Details

Added on Apr 5 2022
0 comments
336 views