- DarkLight
Configuring OAuth Client For Workspace
- DarkLight
Repeat the steps under Okta. Instead of Campaign Manager, the application name is Workspace.
In the Workspace web.config file, set the configuration properties
IsSSOAuthenticationEnabled as true;
SSOAuthBaseUrl - provide the base URL of the auth application (Auth).;
AllowedOrigin - hostname of the base URL, example, acqueon.com for hosted and custmerhostname.com for customer VPCs.
In the Auth application web.config file, set the value for configuration property for Tenant user as email and AllowedOrigin with allowed Domain URL provided in OKTA application. (you may skip this step, if you have already configured the auth application to enable SSO for Console application):
OKTA user must be available in the OBD_Users table in the tenant application. If there is no user, insert one using the following sample query:
INSERT INTO OBD_USERS (USERID, NAME, PASSWORD, ADDRESS1, ADDRESS2, CITY, STATE, PIN, HOME_PHONE, MOBILE_PHONE, EMAIL_ID, COMMENTS, AuthenticationType, UserType, IsSalesForce, IsUserMapped) VALUES ( '[email protected]', ‘agent’, '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 2, 1, 0,1)