How to manually send HTTP POST or DELETE requests from the browser?

Hello. I’m facing the “Issue tracker” challenge. To test the routing I would have to send HTTP PUT and DELETE requests from my browser (firefox or chrome).
Is there an easy way to do this?

fetch("someurl", { method: "POST", body: "some stuff", ...otherStuffSpecificToTheRequestYouAreDoing} )

For example. Can run it from the console.

You can also use something like Postman, Insomnia, or hoppscotch to name a few for API testing.

+1 on this, it tends to be much easier to use one of these rather than using the browser

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.