Ktor Client ๊ฐ์ด๋ ์์ฝ ์ ๋ฆฌ Ktor Documents ๊ธฐ์ค ๋ฒ์ : 1.6.2 ์๋ฆฌ์ฆ 1. ํด๋ผ์ด์ธํธ, Engine 2. Request 3. Response Request๋ฅผ ์์ฑํ๋ ๋ชจ๋ ํจ์(request, get, post, …)๋ HttpResponse ๊ฐ์ฒด๋ฅผ ๋ฐํํ๋ค. Response body Raw body String val httpResponse: HttpResponse = client.get("https://ktor.io/") val stringBody: String = httpResponse.receive() ByteArray val httpResponse: HttpResponse = client.get("https://ktor.io/") val byteArrayBody: By..