Skip to content

Commit

Permalink
Add profile scope to config jsons
Browse files Browse the repository at this point in the history
  • Loading branch information
thivi committed Oct 10, 2021
1 parent 500c05b commit e50bc99
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
3 changes: 2 additions & 1 deletion samples/asgardeo-html-js-app/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,8 @@ <h3>
signInRedirectURL: "https://localhost:5000",
// After logout redirect URL - We have use app root path, since this is a SPA
// Asgardeo Server URL
serverOrigin: ""
serverOrigin: "",
scope: ["profile"]
};
</script>

Expand Down
3 changes: 2 additions & 1 deletion samples/asgardeo-java-webapp/index.jsp
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,8 @@
signInRedirectURL: origin,
// WSO2 Identity Server URL
serverOrigin: "",
responseMode: "form_post"
responseMode: "form_post",
scope: ["profile"]
};
</script>

Expand Down
3 changes: 2 additions & 1 deletion samples/asgardeo-react-js-app/src/config.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"clientID": "",
"signInRedirectURL": "https://localhost:5000",
"serverOrigin": ""
"serverOrigin": "",
"scope": ["profile"]
}
3 changes: 2 additions & 1 deletion samples/asgardeo-react-ts-app/src/config.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"clientID": "",
"serverOrigin": "",
"signInRedirectURL": "https://localhost:5000"
"signInRedirectURL": "https://localhost:5000",
"scope": ["profile"]
}

0 comments on commit e50bc99

Please sign in to comment.