goth_fiber
goth_fiber copied to clipboard
Package goth_fiber provides a simple, clean, and idiomatic way to write authentication packages for fiber framework applications.
Hello i think my code is ok but it throws err 2024/03/30 20:32:51 could not find a matching session for this request exit status 1 my repo link main.go https://github.com/sameer-gits/go-fiber/blob/main/main.go...
I was trying to do google OAuth 2.0 login with the following scope - ``` goth.UseProviders( gothGoogle.New(os.Getenv("OAUTH_KEY"), os.Getenv("OAUTH_SECRET"), "http://localhost:3000/auth/callback", "https://www.googleapis.com/auth/drive.metadata.readonly"), ) ``` This results in goth crashing at gothv1,74.1/providers/google/session.go during...
I haven't modified `goth_fiber.SessionStore` yet when I hit the callback the cookie that gets sent from the server is already expired. I tried setting the session like this https://github.com/markbates/goth#security-notes but...
Hi How can i disable sessions in this lib? I only want to use goth to fetch the user details from the social provider. After than I want to handle...
Bumps [github.com/markbates/goth](https://github.com/markbates/goth) from 1.79.0 to 1.80.0. Release notes Sourced from github.com/markbates/goth's releases. v1.80.0 What's Changed Fix deezer authentication by @anthonymq in markbates/goth#542 gothic: fix link to examples by @adam000 in...