Skip to content

A simple solution to apply Basic Role-Based HTTP Authorization in Go with Casbin using Redis and PostgreSQL

Notifications You must be signed in to change notification settings

girishg4t/go-casbin

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

go-casbin

A simple solution to apply Basic Role-Based HTTP Authorization in Go with Casbin using Redis and PostgreSQL.

More details are in this blog post

How to run the project

go run *.go

Results:

curl -X POST http://bob:@0.0.0.0:3000/channel                                                                 
{"message":"Forbidden"}
curl http://bob:@0.0.0.0:3000/channel                                                                         
"ok channel get"
curl -X POST http://alice:@0.0.0.0:3000/channel                                                               
"ok channel post"
curl -X GET http://alice:@0.0.0.0:3000/channel                                                                
"ok channel get"
curl -X POST http://bob:@0.0.0.0:3000/project                                                                 
{"message":"Forbidden"}

About

A simple solution to apply Basic Role-Based HTTP Authorization in Go with Casbin using Redis and PostgreSQL

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages