-
Notifications
You must be signed in to change notification settings - Fork 373
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 oauth endpoint request with t, ut and sp #2175
Update oauth endpoint request with t, ut and sp #2175
Conversation
@@ -235,6 +235,9 @@ public class OAuth2AuthzEndpoint { | |||
|
|||
private static final String PARAMETERS = "params"; | |||
private static final String FORM_POST_REDIRECT_URI = "redirectURI"; | |||
private static final String SERVICE_PROVIDER = "s"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
since these are processed again in the oauth_response file, shall we add descriptive param names?
eg: serviceProvider, userTenantDomain, TenantDomain, etc
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This was resolved with commit 15b53ca
...ndpoint/src/main/java/org/wso2/carbon/identity/oauth/endpoint/authz/OAuth2AuthzEndpoint.java
Outdated
Show resolved
Hide resolved
Co-authored-by: Chamath Samarawickrama <[email protected]>
PR builder started |
PR builder completed |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Approving the pull request based on the successful pr build https://github.com/wso2/product-is/actions/runs/6402097663
Purpose
This updates the oath endpoint request with tenant domain(t), user tenant domain (ut) and service provider (sp) in order to facilitate the execution of branding API.
Related Issues