Why can I test the delete method perfectly in Postman but not in the browser?
I found that my HTTP delete request runs perfectly when I test it in Postman. However, when I try to test it in the browser, I receive a ‘Cannot GET /account/delete/Julieth’ error. I managed to resolve it by changing the method to GET, which works in both environments. Still, I’m curious why the browser doesn’t recognize the DELETE method. Are there any constraints that the browser has against the DELETE method?