Yneth

Results 27 comments of Yneth

does this PR make sense to you?

I see no export button, except the one in the right bottom corner, but it does not do any exports

figured it out, this button persists on popup, and needs to be clicked again. from UI UX perspective it would be nice to add this button to the popup. otherwise,...

current implementation still does not return the remote max_send_streams. I am not a maintainer but see two ways to solve it: - provide state machine API for Connection when the...

> I expand the `RegisteredClient` to TenantRegisteredClient with a tenantId field, then the clients could use stardar third party library for exchange, but I'm facing a problem, I don't know...

@abilash-sethu sure, here are simplified pseudocode snippets to accomplish it. ``` public static RequestMatcher unauthenticatedRequestMatcher() { RequestMatcher authenticated = authenticatedRequestMatcher(); return request -> !authenticated.matches(request); } public static RequestMatcher authenticatedRequestMatcher() {...

I will try to explain my issue better as in my case using `AuthenticationFailureHandler` is not enough. Let's consider the following lines of code: * https://github.com/spring-projects/spring-authorization-server/blob/main/oauth2-authorization-server/src/main/java/org/springframework/security/oauth2/server/authorization/authentication/OAuth2AuthorizationCodeAuthenticationProvider.java#L147 * https://github.com/spring-projects/spring-authorization-server/blob/main/oauth2-authorization-server/src/main/java/org/springframework/security/oauth2/server/authorization/authentication/OAuth2AuthorizationCodeAuthenticationProvider.java#L152 in those...

> Both [OAuth2TokenGenerator](https://docs.spring.io/spring-authorization-server/docs/current/reference/html/core-model-components.html#oauth2-token-generator) and [OAuth2TokenCustomizer](https://docs.spring.io/spring-authorization-server/docs/current/reference/html/core-model-components.html#oauth2-token-customizer) are available for this purpose. The reference guide has an example of constructing your own OAuth2TokenGenerator using built-in components. Our case is looking the following...