|
@@ -10,6 +10,7 @@ using MapsterMapper;
|
|
|
using MediatR;
|
|
|
using Microsoft.AspNetCore.Authorization;
|
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
+using Polly;
|
|
|
using StackExchange.Redis;
|
|
|
using System.Security.Cryptography;
|
|
|
using System.Text;
|
|
@@ -99,8 +100,12 @@ namespace DataSharing.Host.Controllers
|
|
|
///
|
|
|
/// </summary>
|
|
|
[HttpGet("aaaaaaaaa")]
|
|
|
- public void asdaa()
|
|
|
+ [AllowAnonymous]
|
|
|
+ public async void asdaa()
|
|
|
{
|
|
|
+ var data = _channelConfigurationManager.GetConfigurationProvince();
|
|
|
+ // var result = await _huiJuClient.RequestAsync<ProvinceResponse>(data.HuiJu + PtahDefaults.SubmitCaseInfo, "Post", "", HttpContext.RequestAborted);
|
|
|
+ await _xieTongClient.RequestAsync<ProvinceResponse>(data.XieTong, "POST", "", HttpContext.RequestAborted);
|
|
|
var ss = _sessionContext;
|
|
|
}
|
|
|
|