Skip to content

Commit 8b8ea41

Browse files
authored
Update interactive.md (#10504)
Update URLs From http://localhost:3000/logout, callback, login To http://localhost:3000/
1 parent 73e58c9 commit 8b8ea41

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

articles/quickstart/webapp/express/interactive.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,15 +31,15 @@ If you would rather explore a complete configuration, you can view a sample appl
3131
A callback URL is a URL in your application that you would like Auth0 to redirect users to after they have authenticated. If not set, users will not be returned to your application after they log in.
3232

3333
::: note
34-
If you are following along with our sample project, set this to http://localhost:3000/callback.
34+
If you are following along with our sample project, set this to http://localhost:3000/.
3535
:::
3636

3737
### Configure Logout URLs
3838

3939
A logout URL is a URL in your application that you would like Auth0 to redirect users to after they have logged out. If not set, users will not be able to log out from your application and will receive an error.
4040

4141
::: note
42-
If you are following along with our sample project, set this to http://localhost:3000/logout.
42+
If you are following along with our sample project, set this to http://localhost:3000/.
4343
:::
4444

4545
## Install the Express OpenID Connect SDK {{{ data-action=code data-code="server.js#3:10" }}}
@@ -71,7 +71,7 @@ You can generate a suitable string for `LONG_RANDOM_STRING` using `openssl rand
7171

7272
::::checkpoint
7373
:::checkpoint-default
74-
A user can now log into your application by visiting the `/login` route provided by the library. If you are running your project on `localhost:3000` that link would be [`http://localhost:3000/login`](http://localhost:3000/login).
74+
A user can now log into your application by visiting the `/login` route provided by the library. If you are running your project on `localhost:3000` that link would be [`http://localhost:3000/`](http://localhost:3000/).
7575
:::
7676
:::checkpoint-failure
7777
Sorry about that. You should check the error details on the Auth0 login page to make sure you have entered the callback URL correctly.
@@ -87,7 +87,7 @@ Add the `requiresAuth` middleware for routes that require authentication. Any r
8787

8888
::::checkpoint
8989
:::checkpoint-default
90-
A user can log out of your application by visiting the `/logout` route provided by the library. If you are running your project on `localhost:3000` that link would be [`http://localhost:3000/logout`](http://localhost:3000/logout).
90+
A user can log out of your application by visiting the `/logout` route provided by the library. If you are running your project on `localhost:3000` that link would be [`http://localhost:3000/`](http://localhost:3000/).
9191
:::
9292
:::checkpoint-failure
9393
Sorry about that. You should check that you configured the logout URL correctly.

0 commit comments

Comments
 (0)