services.AddHttpClient
Posted D&J
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了services.AddHttpClient相关的知识,希望对你有一定的参考价值。
public void AddInsuranceHttp(IServiceCollection services)
{
services.AddHttpClient("INSURANCE", option =>
{
option.Timeout = new TimeSpan(0, 0, 60);
}).ConfigurePrimaryHttpMessageHandler(() =>
{
return new HttpClientHandler()
{
MaxRequestContentBufferSize = 102400 ,
AutomaticDecompression = DecompressionMethods.GZip ,
ServerCertificateCustomValidationCallback = (message, cert, chain, error) => true
};
});
}
以上是关于services.AddHttpClient的主要内容,如果未能解决你的问题,请参考以下文章
访问服务器上的 HttpClientHandler.Credentials?
如何使用 Ajax 调用在 API 中动态调用 ActionResult?