Ktor
Ktor is a Kotlin-specific framework for building asynchronous client- and server-side web applications.
Ktor Basics
Ktor is a Kotlin based asynchronous web framework. Backends need to be versatile and scalable. De...
Ktor Architecture & Lifecycle
Architecture EngineMain Class Used to run the application Loads application.conf file Supporte...
Kotlin Basics
Kotlin Class Extensions Extends the functionality of an existing class fun Int.addFive() : Int ...
Ktor REST API
REST - Respresentational State Transfer The path (URL) is the route to a resource A resource is ...
Ktor Authentication and Authorization
So to retain the client information after login we have two options: Create a server-side sessio...
Signing JSON Tokens with RSA
RS256 vs HS256 When signing a JSON Web Token (JWT) from the server, two algorithms are supported ...