• Stars
    star
    105
  • Rank 328,196 (Top 7 %)
  • Language
    Java
  • Created over 9 years ago
  • Updated over 7 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Single Sign On Authentication Server with Spring OAuth2 and MongoDB

Build Status

sso-auth

From Using Spring Security OAuth 2.0 and MongoDB For Single Sign Authentication Server I explained how I chose OAuth 2.0 and MongoDB to build a Single Sign On Auth server that can be used in a microservice architecture.

1. First step. Run sso-auth-client application. And try accessing http://localhost:8081/hello. Without passing any headers it returns this

No Security Token

2. Second step. Run sso-auth-server. Lets use the password grant_type to get an access token. http://localhost:8080/oauth/token?grant_type=password&[email protected]&password=cant_hack_this&client_id=sso-auth-client&client_secret=mySecret

Get Access Token

3. Final step. Lets access http://localhost:8081/hello with our access token. And we are in.

Security Token.