You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 1, 2025. It is now read-only.
When it comes to endpoint authentication, every endpoint that expects the authorization header should implement a method to authenticate the incoming HTTP request (most of the time, redirected to another authentication method by hardcoding every time). If we can implement an annotation like @EndpointAuthenticator (recommended) or something to mark a single method as an authenticated implementation, it will be easy to redirect target authentications with the annotation io.github.lycoriscafe.nexus.http.core.headers.auth.Authenticated.
When it comes to endpoint authentication, every endpoint that expects the
authorizationheader should implement a method to authenticate the incoming HTTP request (most of the time, redirected to another authentication method by hardcoding every time). If we can implement an annotation like@EndpointAuthenticator(recommended) or something to mark a single method as an authenticated implementation, it will be easy to redirect target authentications with the annotationio.github.lycoriscafe.nexus.http.core.headers.auth.Authenticated.