ktor-http-api-sample icon indicating copy to clipboard operation
ktor-http-api-sample copied to clipboard

Source code for tutorial

Results 4 ktor-http-api-sample issues
Sort by recently updated
recently updated
newest added

It took me a while to figure out how `fun Application.module()` was being called. Turrns out it is written in `application.conf`. What is the reason it was added? problem is...

I would expect that most Kotlin developers are more familiar with the Kotlin variant of gradle build files. To reduce unnecessary complexity, the sample build file should be provided in...

I get this exception when trying to manually test with Postman. ```kotlinx.serialization.SerializationException: Can't locate argument-less serializer for class Customer. For generic classes, such as lists, please provide serializer explicitly. at...

When I am copying CustomerRoutes.kt: ```kotlin delete("{id}") { val id = call.parameters["id"] ?: return@delete call.respond(HttpStatusCode.BadRequest) if (customerStorage.removeIf ({ it.id == id }) { //‘removeIf' unresolved;‘it.id' unresolved call.respondText("Customer removed correctly", status...