go-oauth2-server
go-oauth2-server copied to clipboard
Third-person Action Roguelike made in Unreal Engine C++. Project for Unreal Engine C++ Course & Stanford University
https://www.oauth.com/oauth2-servers/access-tokens/authorization-code-request check this part: client_id (required if no other client authentication is present) now this server has only basicauth way, not support get client_id and secret from post body. make...
**Commands:** 1) git clone https://github.com/RichardKnop/go-oauth2-server.git 2) cd go-oauth2-server/ 3) docker build -t go-oauth2-server:latest . 4) docker run -e ETCD_ENDPOINTS=localhost:2379 -p 8070:8080 --name go-oauth2-server go-oauth2-server:latest **Result:** ``` Postgres is up -...
https://tools.ietf.org/html/rfc7521 https://github.com/doorkeeper-gem/doorkeeper-grants_assertion
Thanks for putting this great project together. I've built the go-oauth2-server and it seems to run fine but I'm having trouble figuring out how to actually use it. Apologies in...
Why does this depend on so many heavy weight things? Etcd, Postgres? Can we lighten the dependencies at all?
Am running OSX and was able to build and install without any problem. Then I tried to run, but it fails after about 5 seconds with the FATAL message shown...
docker build -t go-oauth2-server:latest . Sending build context to Docker daemon 9.801 MB Step 1/11 : FROM golang ---> ef15416724f6 Step 2/11 : MAINTAINER Richard Knop ---> Running in deafd9a40cfd...
go version go version go1.7.4 darwin/amd64 go build -a ./... github.com/coreos/etcd/pkg/transport ../../coreos/etcd/pkg/transport/listener_tls.go:151: undefined: net.DefaultResolver in net.DefaultResolver.LookupHost
In OAuth2 for the implicit grant you have to check the Redirect URL, because in this case this is the only way to authorize the client identify. I checked and...
Audit?
Has there been an audit of the code base?