This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class PageApiController : UmbracoApiController | |
{ | |
private readonly ILogger<PageApiController> logger; | |
private readonly HttpClient httpClient; | |
public PageApiController(IHttpClientFactory httpClientFactory, ILogger<PageApiController> logger) | |
{ | |
this.httpClient = httpClientFactory.CreateClient(NamedHttpClient.LoggingHttpClient); | |
this.logger = logger; | |
} | |
public async Task<HttpResponseMessage> CallExternalApi() | |
{ | |
var request = new HttpRequestMessage(HttpMethod.Get, "https://google.com"); | |
return await httpClient.SendAsync(request); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment