Difference between revisions of "HowTo:Integrate UBIK in an SSO Environment"
(→Client) |
|||
Line 29: | Line 29: | ||
Further, we have to make sure the authorization tokens can be transported to the server. Therefore, add the [[SYSCLS_EXTERNALENTITY|External Entity Classification]] to all meta classes of objects that need external authorization. | Further, we have to make sure the authorization tokens can be transported to the server. Therefore, add the [[SYSCLS_EXTERNALENTITY|External Entity Classification]] to all meta classes of objects that need external authorization. | ||
− | + | ||
− | + | ||
= Studio = | = Studio = | ||
Line 44: | Line 44: | ||
* Set up an identity provider if necessary | * Set up an identity provider if necessary | ||
* Assemble a client configuration JSON string, .e.g.: | * Assemble a client configuration JSON string, .e.g.: | ||
− | <syntaxhighlight lang=" | + | <syntaxhighlight lang="javascript"> |
{'AuthorityURL' : 'https://xamarinoidc-app.azurewebsites.net', | {'AuthorityURL' : 'https://xamarinoidc-app.azurewebsites.net', | ||
'ClientID' : 'gnabbermobileclient', | 'ClientID' : 'gnabbermobileclient', | ||
Line 78: | Line 78: | ||
* Assemble a client configuration JSON string, .e.g.: | * Assemble a client configuration JSON string, .e.g.: | ||
− | <syntaxhighlight lang=" | + | <syntaxhighlight lang="javascript"> |
{"AuthUser": "user", "AuthUserPw": "test", "BackendURL": "https://ubik.test.com/UBIK/DEV/AUTH_SERVICE/", "IdpURL": "https://idp.com/idpssoinit?metaAlias=ubik;spEntityID=ubik", "IdpLogoutURL": "", "IsPivotEnabled": false, "Env_Broadcast" : null, "Env_Data": null} | {"AuthUser": "user", "AuthUserPw": "test", "BackendURL": "https://ubik.test.com/UBIK/DEV/AUTH_SERVICE/", "IdpURL": "https://idp.com/idpssoinit?metaAlias=ubik;spEntityID=ubik", "IdpLogoutURL": "", "IsPivotEnabled": false, "Env_Broadcast" : null, "Env_Data": null} | ||
</syntaxhighlight> | </syntaxhighlight> |
Revision as of 13:34, 13 February 2023
Single Sign On (SSO) allows an end-user to interact with multiple services without logging in more than once.
This page shows how to integrate UBIK® into such an SSO environment.