I am using Idp in okta to authenticate the user through the third party. It is successfully redirecting the user to Idp after click on the Next button in the Okta login modal.
But after successful authentication with the Idp, page is not get redirected back to the original organization site.
Here are my config settings:
var config= {
i18n:
en: {
primaryauth.title: “Sign in to account”
primaryauth.username.placeholder: “Email or User ID”
primaryauth.password.placeholder: “Password”
errors.E0000004: “Incorrect email or password. Please try again.”
},
baseUrl: “https://test.example.com”,
redirectUri: “https://test.example.com”,
features:
idpDiscovery: true
registration: true
}
};
Please someone provide the help.
Thanks