Is it possible to have 405 (Method Not Allowed) returned in reply to existing url, which was called with a wrong method (e.g. GET instead of POST)?
Currently, express returns 404 (Not Found) for existing url, called with a wrong method, and, it is sort of misleading in debugging.
Is it possible to have 405 (Method Not Allowed) returned in reply to existing url, which was called with a wrong method (e.g. GET instead of POST)?
Currently, express returns 404 (Not Found) for existing url, called with a wrong method, and, it is sort of misleading in debugging.