16

有没有办法向 IHttpClientFactory 创建的所有客户端添加处理程序?我知道您可以对指定的客户端执行以下操作:

services.AddHttpClient("named", c =>
{
    c.BaseAddress = new Uri("TODO");
    c.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json"));
    c.DefaultRequestHeaders.CacheControl = new CacheControlHeaderValue
    {
        NoCache = true,
        NoStore = true,
        MaxAge = new TimeSpan(0),
        MustRevalidate = true
    };
}).ConfigurePrimaryHttpMessageHandler(() => new HttpClientHandler
{
    AllowAutoRedirect = false,
    AutomaticDecompression = DecompressionMethods.Deflate | DecompressionMethods.GZip
});

但我不想使用命名客户端我只想向通过以下方式返回给我的所有客户端添加一个处理程序:

clientFactory.CreateClient();
4

1 回答 1

18

当您CreateClient不带参数使用时,您会隐式请求一个命名客户端,其中名称为Options.DefaultName( string.Empty)。要影响此默认实例,请Options.DefaultName在调用时指定AddHttpClient

services.AddHttpClient(Options.DefaultName, c =>
{
    // ...
}).ConfigurePrimaryHttpMessageHandler(() =>
{
    // ...
});

Tobias J在评论中指出,API 文档AddHttpClient声明如下:

使用DefaultName作为名称来配置默认客户端。

于 2019-07-27T20:41:53.420 回答