要在C#中调用Web API,您需要使用HttpClient类。以下是一个使用HttpClient调用Web API的示例:
using System; using System.Net.Http; using System.Threading.Tasks; class Program { static async Task Main() { // 创建HttpClient实例 using (HttpClient client = new HttpClient()) { // 设置Web API的基地址 client.BaseAddress = new Uri("https://api.example.com/"); // 发起GET请求并获取响应 HttpResponseMessage response = await client.GetAsync("api/resource"); // 确保请求成功 if (response.IsSuccessStatusCode) { // 读取响应内容 string content = await response.Content.ReadAsStringAsync(); Console.WriteLine(content); } else { Console.WriteLine("请求失败:" + response.ReasonPhrase); } } } }
在上面的示例中,我们使用HttpClient来发起一个GET请求,然后读取响应内容。您可以根据需要修改请求方法、请求头、请求体等。当然,您也可以使用第三方库如RestSharp等来调用Web API。