|
@@ -20,8 +20,7 @@ namespace GxPress.Common.Http
|
|
|
/// <returns></returns>
|
|
|
public static async Task<HttpResponseMessage> GetHeadersAsync(string url, Dictionary<string, string> headers)
|
|
|
{
|
|
|
- var httpClientHandler = new HttpClientHandler { ServerCertificateCustomValidationCallback = HttpClientHandler.DangerousAcceptAnyServerCertificateValidator };
|
|
|
- HttpClient httpClient = new HttpClient(httpClientHandler); //http对象
|
|
|
+ HttpClient httpClient = new HttpClient(); //http对象
|
|
|
//添加header
|
|
|
foreach (var header in headers)
|
|
|
{
|
|
@@ -37,8 +36,7 @@ namespace GxPress.Common.Http
|
|
|
/// <returns></returns>
|
|
|
public static async Task<byte[]> GetByteArrayAsync(string url)
|
|
|
{
|
|
|
- var httpClientHandler = new HttpClientHandler { ServerCertificateCustomValidationCallback = HttpClientHandler.DangerousAcceptAnyServerCertificateValidator };
|
|
|
- HttpClient httpClient = new HttpClient(httpClientHandler); //http对象
|
|
|
+ HttpClient httpClient = new HttpClient(); //http对象
|
|
|
var response = await httpClient.GetByteArrayAsync(url);
|
|
|
return response;
|
|
|
}
|
|
@@ -53,8 +51,7 @@ namespace GxPress.Common.Http
|
|
|
public static async Task<HttpResponseMessage> PostAsync(string url, object jsonObj,
|
|
|
Dictionary<string, string> headers = null)
|
|
|
{
|
|
|
- var httpClientHandler = new HttpClientHandler { ServerCertificateCustomValidationCallback = HttpClientHandler.DangerousAcceptAnyServerCertificateValidator };
|
|
|
- HttpClient httpClient = new HttpClient(httpClientHandler); //http对象
|
|
|
+ HttpClient httpClient = new HttpClient(); //http对象
|
|
|
if (headers != null)
|
|
|
foreach (var header in headers)
|
|
|
{
|
|
@@ -73,8 +70,7 @@ namespace GxPress.Common.Http
|
|
|
/// <returns></returns>
|
|
|
public static async Task<HttpResponseMessage> DeleteAsync(string url, Dictionary<string, string> headers = null)
|
|
|
{
|
|
|
- var httpClientHandler = new HttpClientHandler { ServerCertificateCustomValidationCallback = HttpClientHandler.DangerousAcceptAnyServerCertificateValidator };
|
|
|
- HttpClient httpClient = new HttpClient(httpClientHandler); //http对象
|
|
|
+ HttpClient httpClient = new HttpClient(); //http对象
|
|
|
if (headers != null)
|
|
|
foreach (var header in headers)
|
|
|
{
|