Skip to content

Commit

Permalink
Merge pull request #35 from ChanikaRuchini/issue-9654
Browse files Browse the repository at this point in the history
Update docs
  • Loading branch information
chamathns authored Mar 24, 2022
2 parents d397042 + d466147 commit ba77cad
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
7 changes: 7 additions & 0 deletions docs/integrating_with_existing_webapp.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,13 @@ The structure of the oidc-sample-app we are configuring would be as follows:
```
These properties are required for the OIDC SDK to communicate with Asgardeo.
```
If you have a multi page application and want to redirect users to a specific page(eg:myApp.jsp) after successful
authentication you can add the following property to the oidc-sample-app.properties file.
homePage=myApp.jsp
```

3. Next, we need to find and set JKS properties required for IS server communication. For that, create a file named jks
.properties in the resources directory. The content of the jks.properties file should be similar to:

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -177,3 +177,17 @@ indexPage=/oidc-sample-app/index.html
```
errorPage=/error.jsp
```

### Home Page

**Property Name:** `homePage`

**Description:** This may denote the URI for the home page of the webapp. This parameter can be configured to specify
the page that the user would always be redirected to, after successful authentication.


**Sample:**

```
homePage=home.jsp
```

0 comments on commit ba77cad

Please sign in to comment.