Go to your controller and add some dependency in your code.
Note: Must add this middleware in the startup.cs file
builder.Services.AddHttpClient();
private readonly IHttpClientFactory _httpClientFactory;
public HomeController(IHttpClientFactory httpClientFactory)
{
_httpClientFactory = httpClientFactory;
}
0 Comments
If you have any questions, please let me know