Re: [go-nuts] Re: best working and maintaned golang oauth2 server package

2017-01-17 Thread Rithu John
Hi Simon, The coreos/go-oidc package enables OpenID Connect support for the golang.org/x/oauth2 package.( https://github.com/coreos/go-oidc). You can look through the examples ( https://github.com/coreos/go-oidc/tree/master/example) to get a better idea of h

Re: [go-nuts] Re: best working and maintaned golang oauth2 server package

2017-01-17 Thread Vasiliy Tolstov
Thanks for link.does this library good for my use-case? Also does it possible to have server without static assets? 17 Янв 2017 г. 18:55 пользователь "Brandon Philips" написал: Hey Simon- Any reason you aren't using Dex? https://github.com/coreos/dex Brandon On Wed, Jan 11, 2017, 12:08 PM Si

Re: [go-nuts] Re: best working and maintaned golang oauth2 server package

2017-01-17 Thread Brandon Philips
Hey Simon- Any reason you aren't using Dex? https://github.com/coreos/dex Brandon On Wed, Jan 11, 2017, 12:08 PM Simon Ritchie wrote: > I've just started work on an OAUTH server too. So far I've built the > "simple" example of the RangelReale project. It takes a user name and > password and

[go-nuts] Re: best working and maintaned golang oauth2 server package

2017-01-17 Thread fazal
Checkout https://github.com/ory-am/hydra for a standalone server and https://github.com/ory-am/fosite library used in implementing the server On Wednesday, January 11, 2017 at 12:31:11 AM UTC+5, Vasiliy Tolstov wrote: > > Hi! I need oauth2 server package for go. I found some of them on godoc.org

[go-nuts] Re: best working and maintaned golang oauth2 server package

2017-01-17 Thread fazal
Checkout https://github.com/ory-am/hydra On Wednesday, January 11, 2017 at 12:31:11 AM UTC+5, Vasiliy Tolstov wrote: > > Hi! I need oauth2 server package for go. I found some of them on godoc.org > https://godoc.org/github.com/RangelReale/osin and > https://godoc.org/github.com/go-oauth2/oauth2

[go-nuts] Re: best working and maintaned golang oauth2 server package

2017-01-11 Thread Simon Ritchie
I've just started work on an OAUTH server too. So far I've built the "simple" example of the RangelReale project. It takes a user name and password and produces a token, so it seems to do pretty much all the things that you need. It also gives a reference to the OAUTH RFC. If you haven't do

[go-nuts] Re: best working and maintaned golang oauth2 server package

2017-01-10 Thread Vasiliy Tolstov
Also note that i want to connect to such server from angular2 app via angular2-oauth2 package providing username and password and get after auth on backend client token (to use with http auth bearer) 2017-01-10 22:30 GMT+03:00 Vasiliy Tolstov : > Hi! I need oauth2 server package for go. I found so