Sample Endpoint:
https://localhost:4200/test/index.html?param1=username%2passw0rd&baseApi=https://someOtherService/APIBase.jsp?INT/
When I click on the endpoint above. My url gets converted to this...
https://localhost:4200/test/index.html?param1=username%2passw0rd&baseApi=https:%2F%2FsomeOtherService%2FAPIBase.jsp
as you can see inside the baseApi param the "/" was converted to "%2F" and the value "?INT/" was also removed.
How can I prevent the URL from converting the "/" and retain the "?INT/" value for the value inside the second parameter "baseApi".