I use Dev Http Client for testing REST API. I can't figure out how can I send POST requests. Whatever parameters or query String that I put in body does not show up in request parameters in chrome developer console.
Asked
Active
Viewed 1.5k times
3
Juzer Ali
- 133
1 Answers
2
I'm one of the developers for Dev Http Client. As far as I can see, there is a bug, but it is only a problem with Chrome Dev Tools itself, for some reason request body isn't displayed. I've tried with multiple APIs and multiple sites, requests are actually sent, but DevTools simply doesn't display them.
You can check it by yourself via postcatcher , it will give you and URL where you can direct post requests, and if you keep this url opened in browser, it will show you all the post requests you've send (including their bodies).
jusio
- 136
app.use(express.bodyParser());in my node app. Having said that - http://i.imgur.com/MXJVzkR.png - sadly there is no post data in Chrome Dev Tools :( – Mars Robertson Jun 01 '14 at 18:36