RestSharp,在nuget中引用进项目来 这里封装了,常用的接口请求方式,Post,Get,还有file上传,header处理,鉴权等方式 using RestSharp; using System; namespace FinanceApi { public class APIHelper { private readonly string baseUrl = "http://192.168.60.108:8081/"; /// <summary> /// http请求接口 /// </s…