-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from ansrivas/as/migrate-to-v2
Fixes issue#1; migration to fiber-v2
- Loading branch information
Showing
6 changed files
with
487 additions
and
156 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,62 +14,62 @@ $ go get github.com/shareed2k/goth_fiber | |
|
||
## Supported Providers | ||
|
||
* Amazon | ||
* Apple | ||
* Auth0 | ||
* Azure AD | ||
* Battle.net | ||
* Bitbucket | ||
* Box | ||
* Cloud Foundry | ||
* Dailymotion | ||
* Deezer | ||
* Digital Ocean | ||
* Discord | ||
* Dropbox | ||
* Eve Online | ||
* Fitbit | ||
* Gitea | ||
* GitHub | ||
* Gitlab | ||
* Google+ (deprecated) | ||
* Heroku | ||
* InfluxCloud | ||
* Intercom | ||
* Kakao | ||
* Lastfm | ||
* LINE | ||
* Mailru | ||
* Meetup | ||
* MicrosoftOnline | ||
* Naver | ||
* Nextcloud | ||
* OneDrive | ||
* OpenID Connect (auto discovery) | ||
* Paypal | ||
* SalesForce | ||
* Shopify | ||
* Slack | ||
* Soundcloud | ||
* Spotify | ||
* Steam | ||
* Strava | ||
* Stripe | ||
* Tumblr | ||
* Twitch | ||
* Typetalk | ||
* Uber | ||
* VK | ||
* Wepay | ||
* Xero | ||
* Yahoo | ||
* Yammer | ||
* Yandex | ||
- Amazon | ||
- Apple | ||
- Auth0 | ||
- Azure AD | ||
- Battle.net | ||
- Bitbucket | ||
- Box | ||
- Cloud Foundry | ||
- Dailymotion | ||
- Deezer | ||
- Digital Ocean | ||
- Discord | ||
- Dropbox | ||
- Eve Online | ||
- Fitbit | ||
- Gitea | ||
- GitHub | ||
- Gitlab | ||
- Google+ (deprecated) | ||
- Heroku | ||
- InfluxCloud | ||
- Intercom | ||
- Kakao | ||
- Lastfm | ||
- LINE | ||
- Mailru | ||
- Meetup | ||
- MicrosoftOnline | ||
- Naver | ||
- Nextcloud | ||
- OneDrive | ||
- OpenID Connect (auto discovery) | ||
- Paypal | ||
- SalesForce | ||
- Shopify | ||
- Slack | ||
- Soundcloud | ||
- Spotify | ||
- Steam | ||
- Strava | ||
- Stripe | ||
- Tumblr | ||
- Twitch | ||
- Typetalk | ||
- Uber | ||
- VK | ||
- Wepay | ||
- Xero | ||
- Yahoo | ||
- Yammer | ||
- Yandex | ||
|
||
## Examples | ||
|
||
|
@@ -81,10 +81,19 @@ To run the example either clone the source from GitHub | |
```text | ||
$ git clone [email protected]/shareed2k/goth_fiber.git | ||
``` | ||
or use | ||
|
||
or use for v2 | ||
|
||
```text | ||
$ go get github.com/shareed2k/goth_fiber/v2 | ||
``` | ||
|
||
For v1 | ||
|
||
``` | ||
$ go get github.com/shareed2k/goth_fiber | ||
``` | ||
|
||
```text | ||
$ cd goth_fiber/examples | ||
$ go get -v | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,20 @@ | ||
module github.com/shareed2k/goth_fiber | ||
module github.com/shareed2k/goth_fiber/v2 | ||
|
||
go 1.14 | ||
go 1.15 | ||
|
||
require ( | ||
github.com/gofiber/fiber v1.10.1 | ||
github.com/gofiber/session v1.2.0 | ||
github.com/markbates/goth v1.64.1 | ||
github.com/andybalholm/brotli v1.0.1 // indirect | ||
github.com/gofiber/fiber/v2 v2.2.1 | ||
github.com/golang/protobuf v1.4.3 // indirect | ||
github.com/gorilla/mux v1.7.3 // indirect | ||
github.com/klauspost/compress v1.11.3 // indirect | ||
github.com/kr/pretty v0.2.0 // indirect | ||
github.com/markbates/goth v1.66.0 | ||
github.com/stretchr/testify v1.6.1 // indirect | ||
golang.org/x/net v0.0.0-20201110031124-69a78807bb2b // indirect | ||
golang.org/x/oauth2 v0.0.0-20201109201403-9fd604954f58 // indirect | ||
golang.org/x/sys v0.0.0-20201126144705-a4b67b81d3d2 // indirect | ||
google.golang.org/appengine v1.6.7 // indirect | ||
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect | ||
gopkg.in/yaml.v3 v3.0.0-20200605160147-a5ece683394c // indirect | ||
) |
Oops, something went wrong.