调试WebApi的一些方法

1、Get方法时,直接用浏览器访问

2、Postman

3、用HttpClient调用

privatevoid GetData()
{
using (HttpClient client = new HttpClient())
{
client.BaseAddress = new Uri("ipaddress");
client.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json"));
try
{
HttpResponseMessage response = client.GetAsync("testapi/getdata?id=0").Result;
}
catch
{
}
}
}
上一篇:.NET Core中的验证组件FluentValidation的实战分享


下一篇:CodeIgniter学习笔记四:CI中的URL相关函数,路由,伪静态,去掉index.php