我如何阅读我放在我的FlurlRequest
throug上的自定义标题WithHeader(string name, object value)
以及设置中的Authorization
throug给我们?WithOAuthBearerToken(string token)
HttpCall
FlurlClient
Func<HttpCall, Task> BeforeCallAsync()
我设计了我们的解决方案,FlurlClient
以动态设置自签名证书和自定义 JSON 命名策略,必须与此第三方 API 通信。
我正在使用 Flurl.Http 2.4.2.0
_flurlClient = new FlurlClient()
.Configure(settings =>
{
settings.HttpClientFactory = new X509HttpFactory(
_certificateConfiguration.PersonalInfoExchangePath,
_certificateConfiguration.ClientSecret);
settings.JsonSerializer = _thirdPartyApiJsonSerializer;
settings.BeforeCallAsync = async (httpCall) =>
{
thirdPartyRequestIdentity = await _appThirdPartyRequestRepository.Insert(
new ThirdPartyRequest
{
AppRequestId = await _contextAccessor.GetRequestId(),
RawContent = JsonConvert.SerializeObject(
new
{
Method = httpCall.Request
.Method
.ToString(),
Content = httpCall.Request.Content != null
? await httpCall.Request
.Content
.ReadAsStringAsync()
: null,
Headers = httpCall.Request
.Content?.Headers
.Where(h => h.Value != null)
.Select(h => new
{
h.Key,
Value = h.Value.ToArray()
})
.ToArray(),
httpCall.Request.RequestUri.AbsoluteUri,
httpCall.RequestBody,
EnvironmentHostname = await _environmentContext.GetHostname(),
EnvironmentAddressList = (await _environmentContext.GetAddressList())
.Select(a => a.ToString())
},
_recoveryJsonSerializerSettings),
Timestamp = DateTime.Now
});
};
});
我需要记录所有标题,但使用此代码,我得到的唯一标题(如果适用)是Content-Type
标题。