how to send POST HTTP request from Google Chrome without any extensions?

Chandra Shekhar picture Chandra Shekhar · Sep 23, 2015 · Viewed 17.1k times · Source

Can we send POST HTTP requests in Google Chrome when using Rest Services? I have tried few extensions but I need directly from Chrome browser

Answer

Dev Utkarsh picture Dev Utkarsh · Sep 6, 2016

You can do the post and get in the same way as the browser does. You can use the header to put in information in key, value pair. Here is a tutorial on how you can do it - Send POST data using XMLHttpRequest

But it would be better if you use chrome extension POSTMAN which is very extensive and clean for testing REST services.