emptygif
Dil: Türkçe

Tüm diller ve framework'ler

Ktor Kotlin

Ktor için, /pixel.gif isteklerine başlangıçta bir kez çözülen boş GIF ile yanıt veren bir Kotlin örneği.

Ktor Kotlin

Kurulum
implementation("io.ktor:ktor-server-netty:3.6.0")
Dosya
Application.kt
import io.ktor.http.ContentType
import io.ktor.http.HttpHeaders
import io.ktor.server.engine.embeddedServer
import io.ktor.server.netty.Netty
import io.ktor.server.response.header
import io.ktor.server.response.respondBytes
import io.ktor.server.routing.get
import io.ktor.server.routing.routing
import kotlin.io.encoding.Base64

private val GIF = Base64.decode("R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==")

fun main() {
    embeddedServer(Netty, port = 8080) {
        routing {
            get("/pixel.gif") {
                call.response.header(HttpHeaders.CacheControl, "no-store")
                call.respondBytes(GIF, ContentType.Image.GIF)
            }
        }
    }.start(wait = true)
}

Bu örneği çalıştırıp döndürdüğü baytları karşılaştırdık.

Kontrol et

curl -sI http://localhost:8080/pixel.gif

Resmî site: Ktor

Kotlin için daha fazlası