You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/quickstart/webapp/express/interactive.md
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -31,15 +31,15 @@ If you would rather explore a complete configuration, you can view a sample appl
31
31
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.
32
32
33
33
::: 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/.
35
35
:::
36
36
37
37
### Configure Logout URLs
38
38
39
39
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.
40
40
41
41
::: 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/.
@@ -71,7 +71,7 @@ You can generate a suitable string for `LONG_RANDOM_STRING` using `openssl rand
71
71
72
72
::::checkpoint
73
73
:::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/).
75
75
:::
76
76
:::checkpoint-failure
77
77
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
87
87
88
88
::::checkpoint
89
89
:::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/).
91
91
:::
92
92
:::checkpoint-failure
93
93
Sorry about that. You should check that you configured the logout URL correctly.
0 commit comments