0
Hello,
I am working on a project in which I must build a PL that should consume a REST service (return in JSON). Looking at the Postgresql documentation, I did not find equivalent functions to UTL_HTTP oracle.
I found some tutorials where the DBA built the PL using PL/Python to make HTTP requests.
Postgresql does not have native HTTP request support?
I can’t say, but I suspect I don’t. I’m surprised that Oracle does. A threadless HTTP request would end the bank’s responsiveness. If you need to do this, it may be evidence that there is something very wrong with your requirement. Who should call the Web Apis is the application in the backend. See: https://stackoverflow.com/a/12669205/2241463
– Piovezan