Why isn't Swagger making API requests with the full route?
When I Make a request using the swagger UI, it uses the wrong URL, but when I make the request on the browser and use http://localhost:8080/client/getRecord/?id=j9jSeEYJOjWWp6V5EHP0, it works just fine, since it has the "/client" route, and not on Swagger. For context, here is my index.js code: const express = require(‘express’); const app = express();… Read More Why isn't Swagger making API requests with the full route?