Oauthpassword reset not suported in Pega ?
HI :
We have a custom mobile application that is working with Microsoft Identity Manager for internal corporate users . We need to create a version of this application for our Customers in pega .
In our corporate microsoft application we are able to reset Customer password with this call -->
POST https://<tenand>.b2clogin.com/<tenand>.onmicrosoft.com/oauth2/v2.0/authorize?p=B2C_1_app_password_reset
Content-Type: application/x-www-form-urlencoded
client_id=<client_id> &nonce=defaultNonce&redirect_uri=https%3A%2F%2Fservices.axtel.com.mx%2Fappacks%2Fone%2Fb2c.html&scope=openid&response_type=id_token&prompt=login
If we try to do the same call with a confidential oauth client Id in pega the answer of the platform is this:
"errors": [
{
"error": "unsupported_response_type",
"error_description": "The response type is not supported"
}
]
}
It looks like Paga does not support open_id as response type .
Is there a way to do this reset password call?