Blog.Core/Blog.Core.Common/Helper/HttpHelper.cs
2023-10-18 09:55:54 +08:00

58 lines
1.7 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using System.Net.Http;
using System.Net.Http.Headers;
using System.Threading.Tasks;
namespace Blog.Core.Common.Helper
{
/// <summary>
/// httpclinet请求方式请尽量使用IHttpClientFactory方式
/// </summary>
public class HttpHelper
{
public static readonly HttpClient Httpclient = new HttpClient();
public static async Task<string> GetAsync(string serviceAddress)
{
try
{
string result = string.Empty;
Uri getUrl = new Uri(serviceAddress);
Httpclient.Timeout = new TimeSpan(0, 0, 60);
result = await Httpclient.GetAsync(serviceAddress).Result.Content.ReadAsStringAsync();
return result;
}
catch (Exception e)
{
Console.WriteLine(e.Message);
}
return null;
}
public static async Task<string> PostAsync(string serviceAddress, string requestJson = null)
{
try
{
string result = string.Empty;
Uri postUrl = new Uri(serviceAddress);
using (HttpContent httpContent = new StringContent(requestJson))
{
httpContent.Headers.ContentType = new MediaTypeHeaderValue("application/json");
Httpclient.Timeout = new TimeSpan(0, 0, 60);
result = await Httpclient.PostAsync(serviceAddress, httpContent).Result.Content.ReadAsStringAsync();
}
return result;
}
catch (Exception e)
{
Console.WriteLine(e.Message);
}
return null;
}
}
}