用Fiddler检查POST请求

时间:2011-08-16 07:56:57

标签: http-post fiddler

如何使用Fiddler检查来自Web服务器的响应。我可以通过将URL粘贴到Request Builder中的字段来轻松检查GET方法,并在xml / json中返回响应。有一个选项POST,但我不知道如何将参数传递给POST。

例如:

HttpWebRequest request = (HttpWebRequest)WebRequest.Create("https://www.google.com/accounts/ClientLogin");
request.Method = "POST";

string postData = "accountType=HOSTED_OR_GOOGLE";
postData += "&Email=yourusername@gmail.com";
postData += "&Passwd=yourpassword";
postData += "&service=finance";
postData += "&source=test-test-.01";

如何在Fiddler中将我的数据传递给此POST方法以获取响应?

2 个答案:

答案 0 :(得分:60)

最简单的方法是让Fiddler捕获此请求的实例,并将该会话拖放到“请求”构建器上。

但是自己制作一个帖子并不难。将RequestBuilder的方法设置为POST,添加标题:

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

并在请求正文中填写帖子的文字:

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

答案 1 :(得分:0)

Composer with Http Post, URL, Header and Body

And Result console.log at Server with Json

第1步:使用Http Post,URL,Header和Body编写器 步骤2:在带有Json的服务器上结果console.log