From 3df77ab60d8760fcf64ee082669f8fc463182a68 Mon Sep 17 00:00:00 2001 From: Brian Matzelle Date: Thu, 24 Oct 2024 12:53:32 -0400 Subject: [PATCH] fixed Allowed Callback URLs download instruction, the existing URL provided is incorrect. --- articles/quickstart/webapp/java-spring-boot/download.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/articles/quickstart/webapp/java-spring-boot/download.md b/articles/quickstart/webapp/java-spring-boot/download.md index 9b2aebcefc..a9d3abc7d0 100644 --- a/articles/quickstart/webapp/java-spring-boot/download.md +++ b/articles/quickstart/webapp/java-spring-boot/download.md @@ -3,11 +3,13 @@ To run the sample follow these steps: 1) Set the **Allowed Callback URLs** in the [Application Settings](${manage_url}/#/applications/${account.clientId}/settings) to: + ```text -http://localhost:3000/login/oauth2/code/auth0 +http://localhost:3000/login/oauth2/code/okta ``` 2) Set the **Allowed Logout URLs** in the [Application Settings](${manage_url}/#/applications/${account.clientId}/settings) to: + ```text http://localhost:3000/ ``` @@ -28,4 +30,4 @@ You can also run it from a [Docker](https://www.docker.com) image with the follo sh exec.sh # In Windows' Powershell ./exec.ps1 -``` \ No newline at end of file +```