在 Ktor 的 respondText 中添加 url 的内容

Add content of a url to respondText in Ktor


我有一个 url,我想使用 Ktor 框架将其显示为我的网页内容。

fun Application.module() {
    install(DefaultHeaders)
    install(CallLogging)
    install(Routing) {

        get("/") {
            call.respondText(/*Content of that url in the output ?*/, ContentType.Text.Any)
        }
    }
}

提前致谢。

这看起来像是一种代理。您可以在此处查看反向代理示例:https://github.com/ktorio/ktor-samples/tree/master/other/reverse-proxy