Skip to content

Latest commit

 

History

History
26 lines (18 loc) · 557 Bytes

README.md

File metadata and controls

26 lines (18 loc) · 557 Bytes

KMM-Jwt-Parser

Kotlin multiplatform Library used to parse JWT token and return it as a JsonObject

For iOS target jwt token parsing is done in Swift side and then it is bundled using cinterop in order to call swift code from Kotlin

Sample usage:

val parser = JwtParser()
val jsonObject = parser.parse(YOUR_JWT_TOKEN)

Gradle

sourceSets {
    val commonMain by getting {
        dependencies {
           implementation("io.github.developer--:JwtParser:1.0.0")
        }
    }
}