Implementing SAP xsuaa service with java and deployed, accessing the application URL facing below issue.
SAP CF XSUAA Service - Error Message: Invalid redirect <redirect_uri>/login/callback did not matched the registered values
4k Views Asked by Atul Jain At
2
There are 2 best solutions below
0

I had the same problem while doing this sap tutorial (https://developers.sap.com/tutorials/btp-cf-buildpacks-node-create.html) and it was solved by adding the oath2-configuration to the xs-security.json
:
"oauth2-configuration": {
"token-validity": 604800,
"refresh-token-validity": 2592000,
"redirect-uris": [
"https://<App-router Url>/**"
]
},
Posting this problem solution as I faced and resolved.
Case 1: If you are using BAS (Business Application Studio) and deploying through mta file, make sure you have added forwardAuthToken: true for xsuaa service associated application instance.
in the mta file add the below properties.
If it is not working after that then check your xs-security.json file
Case 2: If deploying a java application below properties should be set in the menifest.yml file.