Search code examples
spring-bootspring-security-oauth2spring-social

How can I integrate spring security with rest oauth2 services and spring social?


I have an app (A) exposing REST services secured with oauth2. (spring security oauth2/spring-web) I want to create a second app (B) (spring-boot or normal spring), from where I can login then call the REST services from A.

How can I configure security in app B so I can use both social login (facebook, twitter, google) and call REST services from app A? Is there an example using spring security/oauth/social integration?

I've found some examples but none sais how to integrate them


Solution

  • Have you tries the Spring oAuth2 tutorial with FB and Google login? This also includes a local login. All code is available in git from the link in the right column of the tutorial.