1、RestSharp
这个库的热度还是毕竟高,已经达到了7.5k star
这里我们就先省略Nuget安装,直接到示例编码
[HttpGet("joke")]
public async Task<string> GetJoke()
{
var client = new RestClient("https://api.apiopen.top");
var request = new RestRequest("/getJoke?page=1&count=2&type=video", Method.GET);
IRestResponse rest= await client.ExecuteAsync(request);
return rest.Content;
}
这里只是一个简单的调用,它也提供了比较全面的工具方法,各位可以去官网了解一下
2、Flurl.Http
这个开源类库使用起来也是非常方便的,它扩展了字符串方法,在Nuget中安装Flurl.Http
然后一句代码即可发起HTTP请求并序列化成对象
[HttpGet("joke")]
public async Task<ResultResponse> GetJoke()
{
return await "https://api.apiopen.top/getJoke?page=1&count=2&type=video".GetJsonAsync<ResultResponse>();
}
3、refit
这里我们新建一个名为IWebApi的接口:
public interface IWebApi
{
[Get("/getJoke?page={page}&count={count}&type={video}")]
Task<ResultResponse> GetJoke(int page,int count,string video);
}
这里的Get是refit的特性之一,里面的字符串即为请求路径和参数
现在,我们就去调用这个接口
[HttpGet("joke")]
public async Task<ResultResponse> GetJoke()
{
var webApi = RestService.For<IWebApi>("https://api.apiopen.top/");
return await webApi.GetJoke(1,10, "video");
}
就这样简单的使用就可以获取我们接口的信息了
refit为我们提供了很多特性,如果在请求时需要加Header,那么可以使用Headers这个特性。
4、EasyHttp
这个开源库已经很久没有更新了
由于我演示是用的.net core 3.1,EasyHttp不支持Core,所以这里就不演示了,我就在Github搬一些案例过来吧
var http = new HttpClient();
http.Request.Accept = HttpContentTypes.ApplicationJson;
var response = http.Get("url");
var customer = response.DynamicBody;
如果是.net framework是的同学,可以使用一下。
好了,这里只是简单的分享4款开源的http请求组件,使用的示例也是非常简单,并没有对这几个组件进行对比分析,你们在使用之前请先自行实践对比,进行最优选择。
标签:count,HTTP,C#,public,video,GetJoke,var,Net,page From: https://www.cnblogs.com/guangzhiruijie/p/17019388.html