Also posted in random but could also be interestin...
# ktor
a
Also posted in random but could also be interesting fot this channel: I am starting up a project to support OAuth2 server for Kotlin frameworks (starting with KTor) https://github.com/adhesivee/kotlin-oauth2-server The installation should eventually be something simple like:
Copy code
install(Oauth2ServerFeature) {
            identityService = CustomIdentityService()
            clientService = InMemoryClient()
                    .client {
                        clientId = "testapp"
                        clientSecret = "testpass"
                        scopes = setOf("ROLE_CLIENT")
                    }
            tokenStore = CustomTokenStore
        }
Because I am in such a early stage, I was wondering about your opinion. Do you think it would make sense, and if so, what would you like to see in the project? It would be a lot easier for me to do it now then later 🙂