auth0 / docs

Auth0 documentation
MIT License
369 stars 1.61k forks source link

Incorrect dependency in Java String Boot #9384

Open freizl opened 4 years ago

freizl commented 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>
freizl commented 4 years ago

Also callback is wrong in Java Spring Sample instruction

Screen Shot 2020-08-18 at 12 21 46 PM

shall be

http://localhost:3000/login/oauth2/code/auth0