A. Bos
A. Bos
Looking at this thread and I see that stateless and stateful needs to be supported. I think it will be good what is common between these and what isn't. My...
Still have to put some effort into this. Each framework has a special callback configuration for this, example: [Javalin](https://github.com/myndocs/kotlin-oauth2-server/blob/develop/oauth2-server-javalin/src/main/java/nl/myndocs/oauth2/javalin/Oauth2Server.kt#L13-L16) [Ktor](https://github.com/myndocs/kotlin-oauth2-server/blob/develop/oauth2-server-ktor/src/main/java/nl/myndocs/oauth2/ktor/feature/config/KtorConfiguration.kt#L10-L13) Configuration can be done something like: ```kotlin identityService = InMemoryIdentity()...
I have introduced the userInfo endpoint, because with [RFC6749](https://tools.ietf.org/html/rfc6749) there is no standard way of doing this. But still wanted to provide an endpoint that some basic user information is...
That isn't in the planning for PKCE and Spring support. If you would like, you can create a PR for it.
Facing the same issue on a single connection. When fetching a large dataset 50_000+ it starts blocking. It also affects other Tokio processes like Axum not being able to handle...
An approach could be to add `receiptHandler` on [StompClientConnection](https://github.com/vert-x3/vertx-stomp/blob/master/src/main/java/io/vertx/ext/stomp/StompClientConnection.java). When no value is passed it will use the current implementation. This way it is possible to create own implementation around...