OKR Dashboard with Kotlin Client
Project Setup
plugins {
kotlin("jvm") version "1.8.20"
application
}
group = "com.example"
version = "1.0-SNAPSHOT"
repositories {
mavenCentral()
}
dependencies {
implementation("com.squareup.okhttp3:okhttp:4.10.0")
implementation("org.json:json:20211205")
}
application {
mainClass.set("com.example.MainKt")
}Authenticating with a JWT Bearer Token
1. Creating a Top-Level Objective
2. Adding Key Results (Child Objectives)
3. Adding Tasks to the OKRs
4. Fetching and Displaying the OKR Dashboard
Last updated
Was this helpful?
