Skip to content

Commit 3a985a2

Browse files
Redirect URL change
1 parent b3cda90 commit 3a985a2

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

en/asgardeo/docs/complete-guides/nodejs/add-login-and-logout.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ router.post("/logout", function (req, res, next) {
249249
return next(err);
250250
}
251251
var params = {
252-
post_logout_redirect_uri: "http://localhost:3000/oauth2/redirect",
252+
post_logout_redirect_uri: "http://localhost:3000",
253253
client_id: process.env.ASGARDEO_CLIENT_ID,
254254
};
255255
res.redirect(

en/asgardeo/docs/complete-guides/nodejs/register-an-application.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,18 +12,18 @@ First unless you already have done that, you need to create an organization in {
1212

1313
![Select Traditional Web Application]({{base_path}}/complete-guides/nodejs/assets/img/image5.png){: width="800" style="display: block; margin: 0;"}
1414

15-
Next, complete the wizard popup by providing a suitable name and an authorized redirect URL. Keep OpenID Connect selected as the protocol.
15+
Next, complete the wizard popup by providing a suitable name and following authorized redirect URLs. Keep OpenID Connect selected as the protocol.
1616

1717
!!! Example
1818
**name:** is-nodejs
1919

20-
**Authorized redirect URL:** http://localhost:3000/oauth2/redirect
20+
**Authorized redirect URLs:** http://localhost:3000/oauth2/redirect, http://localhost:3000
2121

2222
![Register a new application]({{base_path}}/complete-guides/nodejs/assets/img/image8.png){: width="800" style="display: block; margin: 0;"}
2323

2424
!!! Info
2525

26-
The authorized redirect URL determines where {{product_name}} should send users after they successfully log in. Typically, this will be the web address where your app is hosted. For this guide, we'll use [http://localhost:3000/oauth2/redirect](http://localhost:3000/oauth2/redirect){:target="_blank"}, as the sample app will be accessible at this URL.
26+
The authorized redirect URL determines where {{product_name}} should send users after they successfully log in. Typically, this will be the web address where your app is hosted. For this guide, we'll use [http://localhost:3000/oauth2/redirect](http://localhost:3000/oauth2/redirect){:target="_blank"} and [http://localhost:3000](http://localhost:3000){:target="_blank"}.
2727

2828
You will need the following information available in the Quick Start tab of your app.
2929

0 commit comments

Comments
 (0)