How to sent a POST request as json in plsql

后端 未结 2 681
予麋鹿
予麋鹿 2021-02-06 13:59

I have the following basic code which i use to post a plsql json request. The webservice getting executed doesnt have any response as it is simply for carrying out a certain tas

2条回答
  •  野趣味
    野趣味 (楼主)
    2021-02-06 14:24

    Now, I needed to change the line req := utl_http.begin_request(url, 'POST',' HTTP/1.1');

    I did and worked: req := utl_http.begin_request(url, 'POST');

提交回复
热议问题