Calling webservice with basic auth. How to avoid password hardcoding in the package?
Oracle 19c
I have plsql code which calls a WS with basic auth.
The call is made with apex_web_service.make_request , where I have the user and password hardcoded.
Can I store the pass in a wallet and retrieve it with some function to put it in the apex_web_service.make_request call?
Or any other better way than having it plain in my package.
Thanks