Pega SSO using OpenID connect authentication service
We can create a new OpenID Connect authentication service in Pega using google as the OpenID Identity provider and how we can log in Pega using the google credentials.Pega supports OpenID authentication service in versions 7.4 & above. Sequence of steps in this implementation: 1) User tries to login into a Pega application using Google login credentials 2) Pega application sends an auth request to Google(OpenID Identity Provider) 3) A Google login screen appears and allows the user to enter id/pwd to pass the credentials to Identity Provider 4) Google generates an auth code and sends it back to Pega app 5) After receiving the auth code, Pega requests for an access token and receives it from the Identity Provider 6) After getting the token, Pega sends a request and retrieves the user info necessary for authentication To work on the above steps, we need to login into google's developer portal: https://console.developers.google.com/project?pli=1 and 1) Create a new project:PegaPr...