wanghongsha 2020-05-05
.Net 的 REST 库 RestSharp,及相关的 httpclient:
1、RestSharp : https://restsharp.dev/ https://github.com/restsharp/RestSharp
2、httpclient : 微软官方产品
创建一个 HttpClient 实例,这个实例需要调用 Dispose 方法释放资源,这里使用了 using 语句。接着调用 GetAsync,给它传递要调用的方法的地址,向服务器发送 Get 请求。