I have a request coming into my app that looks like this:
POST /?post%2F5125504547b49d91b2000001 200 53ms - 9.35kb
Which, when unencoded looks like:
POST /?post/5125504547b49d91b2000001 200 53ms - 9.35kb
My question, is how to I capture this with a express route?
I've tried the following:
app.all "/?post/:id",
app.all "/?post%2F:id",
Any ideas?