- Notifications
You must be signed in to change notification settings - Fork0
Package goth provides a simple, clean, and idiomatic way to write authentication packages for Go web applications.
License
metal-stack/goth
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
Package goth provides a simple, clean, and idiomatic way to write authenticationpackages for Go web applications.
Unlike other similar packages, Goth, lets you write OAuth, OAuth2, or any otherprotocol providers, as long as they implement theProvider andSession interfaces.
This package was inspired byhttps://github.com/intridea/omniauth.
$ go get github.com/markbates/goth- Amazon
- Apple
- Auth0
- Azure AD
- Battle.net
- Bitbucket
- Box
- ClassLink
- Cloud Foundry
- Dailymotion
- Deezer
- DigitalOcean
- DingTalk
- Discord
- Dropbox
- Eve Online
- Fitbit
- Gitea
- GitHub
- Gitlab
- Heroku
- InfluxCloud
- Intercom
- Kakao
- Lastfm
- LINE
- Mailru
- Meetup
- MicrosoftOnline
- Naver
- Nextcloud
- Okta
- OneDrive
- OpenID Connect (auto discovery)
- Oura
- Patreon
- Paypal
- SalesForce
- Shopify
- Slack
- Soundcloud
- Spotify
- Steam
- Strava
- Stripe
- TikTok
- Tumblr
- Twitch
- Typetalk
- Uber
- VK
- WeCom
- Wepay
- Xero
- Yahoo
- Yammer
- Yandex
- Zoom
See theexamples folder for a working application that lets users authenticatethrough Twitter, Facebook, Google Plus etc.
To run the example either clone the source from GitHub
$ git clone git@github.com:markbates/goth.gitor use
$ go get github.com/markbates/goth$ cd goth/examples$ go get -v$ go build$ ./examplesNow open up your browser and go tohttp://localhost:3000 to see the example.
To actually use the different providers, please make sure you set environment variables. Example given in the examples/main.go file
By default, gothic uses aCookieStore from thegorilla/sessions package to store session data.
As configured, this default store (gothic.Store) will generate cookies withOptions:
&Options{Path:"/",Domain:"",MaxAge:86400*30,HttpOnly:true,Secure:false, }
To tailor these fields for your application, you can override thegothic.Store variable at startup.
The following snippet shows one way to do this:
key:=""// Replace with your SESSION_SECRET or similarmaxAge:=86400*30// 30 daysisProd:=false// Set to true when serving over httpsstore:=sessions.NewCookieStore([]byte(key))store.MaxAge(maxAge)store.Options.Path="/"store.Options.HttpOnly=true// HttpOnly should always be enabledstore.Options.Secure=isProdgothic.Store=store
Issues always stand a significantly better chance of getting fixed if they are accompanied by apull request.
Would I love to see more providers? Certainly! Would you love to contribute one? Hopefully, yes!
- Fork it
- Create your feature branch (git checkout -b my-new-feature)
- Write Tests!
- Make sure the codebase adhere to the Go coding standards by executing
gofmt -s -w ./ - Commit your changes (git commit -am 'Add some feature')
- Push to the branch (git push origin my-new-feature)
- Create new Pull Request
About
Package goth provides a simple, clean, and idiomatic way to write authentication packages for Go web applications.
Resources
License
Contributing
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Releases
Packages0
Uh oh!
There was an error while loading.Please reload this page.
Languages
- Go100.0%