You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Really nice and well thought out implementation. 👍
I am interested to run OAuth server and and resource server(s) on separate JVMs.
in this case, JWTs helps reduce network roundtrips to validate token by resource server. they also work nicely with Angular front-end.
wonder if you can have JWT option?
Instead of Basic Auth , can you support REST endpoint where username/password can be POSTed?
Just a suggestion, you could use Gradle multi-project setup to provide us two separate grails apps (one for OAuth server and one for demo resource server) in the same repository.
The text was updated successfully, but these errors were encountered:
Sure, JWT would be a great addition to the sample app! It's supported in Spring Security OAuth, so it should be pretty easy to plug it in.
I'm not sure what the other options are for the /oauth/token endpoint in Spring Security OAuth besides basic auth. I'll have to look into it.
Yup, this would also be a great addition to the golden sample of separate resource and authorization servers. I've actually already started playing around with it too!
Really nice and well thought out implementation. 👍
I am interested to run OAuth server and and resource server(s) on separate JVMs.
in this case, JWTs helps reduce network roundtrips to validate token by resource server. they also work nicely with Angular front-end.
The text was updated successfully, but these errors were encountered: