Popularity
0.9
Declining
Activity
0.0
Stable
3
4
0
Description
This is a ported project from OAuth2 Provider that had been written in Node.js with some additional features.
Programming language: Go
License: GNU General Public License v3.0 or later
Latest version: v0.2.4
go-oauth2 alternatives and similar packages
Based on the "Authentication & OAuth" category.
Alternatively, view go-oauth2 alternatives based on common mentions on social networks and blogs.
-
aws-doc-sdk-examples
Welcome to the AWS Code Examples Repository. This repo contains code examples used in the AWS documentation, AWS SDK Developer Guides, and more. For more information, see the Readme.md file below. -
casbin
An authorization library that supports access control models like ACL, RBAC, ABAC in Golang -
jwt-go
ARCHIVE - Golang implementation of JSON Web Tokens (JWT). This project is now maintained at: -
goth
Package goth provides a simple, clean, and idiomatic way to write authentication packages for Go web applications. -
go-oauth2-server
A standalone, specification-compliant, OAuth2 server written in Golang. -
loginsrv
JWT login microservice with plugable backends such as OAuth2, Google, Github, htpasswd, osiam, .. -
gorbac
goRBAC provides a lightweight role-based access control (RBAC) implementation in Golang. -
gologin
Go login handlers for authentication providers (OAuth1, OAuth2) -
permissions2
:closed_lock_with_key: Middleware for keeping track of users, login states and permissions -
jwt-auth
This package provides json web token (jwt) middleware for goLang http servers -
yubigo
Yubigo is a Yubikey client API library that provides an easy way to integrate the Yubico Yubikey into your existing Go-based user authentication infrastructure. -
sessions
A dead simple, highly performant, highly customizable sessions middleware for go http servers. -
Facecontrol
Simple authentication, single sign-on and (optinal) authorization solution.
Clean code begins in your IDE with SonarLint
Up your coding game and discover issues early. SonarLint is a free plugin that helps you find & fix bugs and security issues from the moment you start writing code. Install from your favorite IDE marketplace today.
Promo
www.sonarlint.org
Do you think we are missing an alternative of go-oauth2 or a related project?
README
go-oauth2
OAuth2 Provider library written in Go
This is a ported project from OAuth2 Provider that had been written in Node.js with some additional features.
- Pure implementation in GoLang.
- Current implementation only supports password_flow & refresh_token_flow.
- Use JWT.
- Default buildin with MongoDB.
- Allow to customize the server.
Example Server
package main
import (
"fmt"
"github.com/phuc0302/go-oauth2"
"github.com/phuc0302/go-oauth2/oauth_key"
"github.com/phuc0302/go-oauth2/oauth_role"
"github.com/phuc0302/go-server"
"github.com/phuc0302/go-server/util"
)
func main() {
// Initialize server with sandbox mode enable and using MongoDB.
oauth2.InitializeWithMongoDB(true, true)
// Define handler
f := func(c *server.RequestContext) {
if s, ok := c.GetExtra(oauthKey.Context).(oauth2.OAuthContext); ok {
c.OutputText(util.Status200(), fmt.Sprintf("Hello, your ID is: %s", s.User.UserID()))
} else {
panic(util.Status401())
}
}
// Bind handler with HTTP GET
oauth2.BindGet("/protected", oauthRole.All(), f)
// Start server
oauth2.Run()
}
Author
Phuc, Tran Huu [email protected]