Dotnet/.NET , ASP.NET CORE2 C#에서의 http 요청/응답/사용 Http Get 요청public async Task SendHttpGet(string url){ try{ using(HttpClient client = new HttpClient()){ HttpResponseMessage response = await client.GetAsync(url); response.EnsureSuccessStatusCode(); string responseBody = await response.Content.ReadAsStringAsync(); return responseBody; } }catch(Exception e){ Console.WriteLine(.. 2024. 11. 19. 최소 api에 jwt bearer 인증 적용하고 Swagger 설정까지 *** 들어가기 전에 이것저것 살펴보기 * 여러 포트에서 동작하게 할 수 있다.app.Urls.Add("http://localhost:3000")app.Urls.Add("http://localhost:4000")app.Run(); * 환경변수에서 포트번호를 읽어와서 설정할 수도 있다.var app = WebApplication.Create(args);var port = Environment.GetEnvironmentVariable("PORT") ?? "3000";app.MapGet("/", () => "Hello world");app.Run($"http://localhost:{port}"); * 로그온 어플리케이션 시작에 메시지를 쓸 수 있다.var app = WebApplication.Create(.. 2024. 8. 1. 이전 1 다음