Open freizl opened 4 years ago
https://github.com/auth0/docs/blob/master/articles/quickstart/webapp/java-spring-boot/01-login.md
<dependency> <groupId>org.springframework.security</groupId> <artifactId>spring-boot-starter-oauth2-client</artifactId> </dependency>
shall be
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-oauth2-client</artifactId> </dependency>
I'm using (an demo app created from intellij 2019.3, sprint initilizar project)
<groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.3.3.RELEASE</version>
Also callback is wrong in Java Spring Sample instruction
http://localhost:3000/login/oauth2/code/auth0
https://github.com/auth0/docs/blob/master/articles/quickstart/webapp/java-spring-boot/01-login.md
shall be
I'm using (an demo app created from intellij 2019.3, sprint initilizar project)