你能告诉我如何使用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"
}