How to send an HTTP delete request with custom headers?

I have a web server running on EC2 node. There is an endpoint that accepts HTTP DELETE requests. It accepts requests and receipts with the intended functionality only if some specific headers are in the DELETE request it sends. What would be the easiest way to test this?

+4
source share
1 answer

Check http://www.hurl.it/

Set the type to DELETE and click Add Headers to add the desired headers.

+3
source

Source: https://habr.com/ru/post/1526218/


All Articles