I've got a quick question, is it possible to include raw url in request params? I guess that it is a problem with additional // that confuses Postman, which I am using or I have to create a special request handler in my server.
http://localhost:5000/api/https://google.com
Here is how I try to handle this in my node.js express server
app.use('/api/:url')
I know that I can overcome this by changing my api and include this in body, but I want to do this that way