# HttpClient 만들기 // HttpClient lifecycle management best practices: // https://learn.microsoft.com/dotnet/fundamentals/networking/http/httpclient-guidelines#recommended-use private static HttpClient sharedClient = new() { BaseAddress = new Uri("https://jsonplaceholder.typicode.com"), }; # Http GET 요청 static async Task GetAsync(HttpClient httpClient) { using HttpResponseMessage response = await h..