使用Fiddler或任何扩展来测试复杂的WebApi方法

时间:2015-08-14 15:04:52

标签: asp.net-mvc google-chrome asp.net-web-api fiddler

你能告诉我如何使用fiddler或者什么扩展来测试下面提到的复杂webapi方法?提前谢谢。

WebApi方法:

 [HttpPost]
 [POST("Sponsors/MyFulfilled/{pledgeId}/{amount}")]
 public string MyFulfilled(int pledgeId, decimal amount, MyConfirmation mp)
        {
           //code here

            return "thanks";
        }

MyConfirmation类:

 public class MyConfirmation
        {
            public string checkoutid { get; set; }
        }

更新:

我曾经这样用过。但是它没有用:(

pledgeId=5&amount=88&mp={
"checkoutid":"12"
}

0 个答案:

没有答案