HttpClient 属性未通过 DI 传递
HttpClient properties not being passed with DI
我正在开发一个 ASP.NET Core 5.0 项目,该项目有一个访问 API 的服务。
根据下面的代码,我希望提供给 ToornamentService 的构造函数的 HttpClient 包含声明的 BaseAddress 和 API 键 header.
但是,在调试时,我注意到 HttpClient 从来没有这些。 BaseAdress 为空,缺少 header。
我试过使用 IHttpClientFactory 而不是类型化的客户端,但我得到了相同的结果。
我做错了什么?
配置服务方法:
public void ConfigureServices(IServiceCollection services)
{
//Omitted for brevity
services.AddHttpClient<ToornamentService>(c =>
{
c.BaseAddress = new Uri("https://api.toornament.com/");
c.DefaultRequestHeaders.Add("X-Api-Key", Configuration["Toornament:ApiKey"]);
});
services.AddTransient<ToornamentService>();
}
装饰服务class:
public ToornamentService(HttpClient client)
{
Client = client; // client.BaseAddress here is null
}
删除这一行:services.AddTransient<ToornamentService>();
当您调用 AddHttpClient
时,它会为您注入临时服务。
所以你正在做的是注射两次。由于您的瞬态注入是最后一次注入,因此它优先于 AddHttpClient
注入。
我正在开发一个 ASP.NET Core 5.0 项目,该项目有一个访问 API 的服务。 根据下面的代码,我希望提供给 ToornamentService 的构造函数的 HttpClient 包含声明的 BaseAddress 和 API 键 header.
但是,在调试时,我注意到 HttpClient 从来没有这些。 BaseAdress 为空,缺少 header。 我试过使用 IHttpClientFactory 而不是类型化的客户端,但我得到了相同的结果。
我做错了什么?
配置服务方法:
public void ConfigureServices(IServiceCollection services)
{
//Omitted for brevity
services.AddHttpClient<ToornamentService>(c =>
{
c.BaseAddress = new Uri("https://api.toornament.com/");
c.DefaultRequestHeaders.Add("X-Api-Key", Configuration["Toornament:ApiKey"]);
});
services.AddTransient<ToornamentService>();
}
装饰服务class:
public ToornamentService(HttpClient client)
{
Client = client; // client.BaseAddress here is null
}
删除这一行:services.AddTransient<ToornamentService>();
当您调用 AddHttpClient
时,它会为您注入临时服务。
所以你正在做的是注射两次。由于您的瞬态注入是最后一次注入,因此它优先于 AddHttpClient
注入。