Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update docs #35

Merged
merged 2 commits into from
Mar 24, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
```