如何在Fiddler中创建Post请求

时间:2015-03-19 20:56:15

标签: http-post fiddler

尝试向我的C#API发送Fiddler Post请求,如下所示(这是我使用VS2012的开发环境)。但是,我的请求对象是C#中的null。在composer选项卡的已解析选项卡中。我的帖子网址:http://localhost:33218/api/drm

User-Agent: Fiddler/4.4.9.2 (.NET 4.0.30319.34209; WinNT 6.1.7601 SP1; en-US; 4xAMD64)
Pragma: no-cache
Accept-Language: en-US
Host: localhost:33218
Accept-Encoding: gzip, deflate
Connection: Close
Content-Length: 80

请求正文:

&sid=f7f026d60bb8b51&riskMeasureName=RMTest

这是C#API方法:

// POST api/drm 
public HttpResponseMessage Post([FromBody]JObject drmObject)
{
     string sid = drmObject.GetValue("sid").ToString();
     string riskMeasCategory = drmObject.GetValue("riskMeasureName").ToString();
     string response = DynAggrClientAPI.insertDRMCategory(sid, riskMeasCategory);

     var httpResp = Request.CreateResponse(HttpStatusCode.OK);
     httpResp.Content = new StringContent(response, Encoding.UTF8, "application/json");

     return httpResp;
}

我可以使用我的C#Post()方法进行调试,但drmObjectnull

感谢您的建议。

1 个答案:

答案 0 :(得分:8)

您没有发送内容类型,因此MVC无法告诉您如何解释数据。

您的数据似乎与表单POST类似,因此请添加标题:

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