authboss
authboss copied to clipboard
The boss of http auth.
Hi, First of all thanks for your awesome work! I have use case where I wan't to allow sign in with OAuth2 for existing application users, but I don't want...
echo: http: panic serving 127.0.0.1:55619: ResponseWriter must be a ClientStateResponseWriter or UnderlyingResponseWriter in (see: authboss.LoadClientStateMiddleware): *echo.Response
Hey there, I was playing around with authboss as a whole. Confirmation module works as expected. But out of curiosity wanted to try how to do a retry for confirmation...
### Problem #### Password hashing :hash: Password hashing process is hard-coded and can't be modified in any kind. There are cases where we do need control on how password is...
### Problem: We can't halt event loop from an event inside (stop other hooks to be executed) Fixes #337 Idea of solution is to return a custom `ErrHalt` that will...
What about an option to stop (Halt) event loop from inside an event? `return true, nil` will still loop through all registered hooks in the given event chain, and there...
OpenID Connect seems like an easier way to offer login than oauth2. If you think that this is a good idea, I could try to add it as a subpackage...
It looks like there is no event for the confirm module. I think it would make sense to add one.
I have this part on my code: ``` pub.HandleFunc("/version", logHandler(version)) func logHandler(next http.HandlerFunc) http.HandlerFunc { // logger } func version(w http.ResponseWriter, r *http.Request) { // print version } ``` How...
_Issue opened for the creation of a wiki page that summarizes the doubts and problems for newbies (https://github.com/volatiletech/authboss/issues/210)._ --- ### **I know** this question has already been asked so many...