check POST request with Fiddler

痴心易碎 提交于 2019-11-29 20:18:15

The simplest way to do this is to have Fiddler capture an instance of this request and drag/drop that session onto the Request builder.

But generating a post yourself isn't hard. Set the RequestBuilder's method to POST, add a header:

Content-Type: application/x-www-form-urlencoded

And put in the Request Body the text of the post:

accountType=HOSTED_OR_GOOGLE&Email=yourusername@gmail.com&Passwd=yourpassword&service=finance&source=test-test-.01

Step 1: Composer with Http Post, URL, Header and Body Step 2: And Result console.log at Server with Json

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!