├── .gitignore ├── .mvn └── wrapper │ ├── maven-wrapper.jar │ └── maven-wrapper.properties ├── mvnw ├── mvnw.cmd ├── pom.xml └── src ├── main ├── java │ └── com │ │ └── example │ │ └── SimpleApplication.java └── resources │ ├── application.yml │ └── static │ └── index.html └── test └── java └── com └── example └── SimpleApplicationTests.java /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishek-galoda/spring-oauth2-facebook-google-linkedIn-twitter/HEAD/.gitignore -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishek-galoda/spring-oauth2-facebook-google-linkedIn-twitter/HEAD/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishek-galoda/spring-oauth2-facebook-google-linkedIn-twitter/HEAD/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishek-galoda/spring-oauth2-facebook-google-linkedIn-twitter/HEAD/mvnw -------------------------------------------------------------------------------- /mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishek-galoda/spring-oauth2-facebook-google-linkedIn-twitter/HEAD/mvnw.cmd -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishek-galoda/spring-oauth2-facebook-google-linkedIn-twitter/HEAD/pom.xml -------------------------------------------------------------------------------- /src/main/java/com/example/SimpleApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishek-galoda/spring-oauth2-facebook-google-linkedIn-twitter/HEAD/src/main/java/com/example/SimpleApplication.java -------------------------------------------------------------------------------- /src/main/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishek-galoda/spring-oauth2-facebook-google-linkedIn-twitter/HEAD/src/main/resources/application.yml -------------------------------------------------------------------------------- /src/main/resources/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishek-galoda/spring-oauth2-facebook-google-linkedIn-twitter/HEAD/src/main/resources/static/index.html -------------------------------------------------------------------------------- /src/test/java/com/example/SimpleApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishek-galoda/spring-oauth2-facebook-google-linkedIn-twitter/HEAD/src/test/java/com/example/SimpleApplicationTests.java --------------------------------------------------------------------------------