SSO with One Login, Is it possible to set domain name through api call
SSO with One Login, can i set the domain name in the authentication request cookie and will this override the domain name in the OneLogin configuration in Login plus?
SSO with One Login, can i set the domain name in the authentication request cookie and will this override the domain name in the OneLogin configuration in Login plus?
The domain name in authentication request should be exactly the same as in SSO settings as based on it, script makes secure cookie and compares it with original domain.
What is the reason for sending another domain? Do you want to authorize users from different systems that are outside of UseResponse?
The domain name in authentication request should be exactly the same as in SSO settings as based on it, script makes secure cookie and compares it with original domain.
What is the reason for sending another domain? Do you want to authorize users from different systems that are outside of UseResponse?
For each instance to be hosted on several domains you would need 2 licenses. But you can install 1 dev environment per your license.
Just still confused. You want to have 1 feedback system that connects and authenticates users from 2 different login forms located outside UseResponse?
For each instance to be hosted on several domains you would need 2 licenses. But you can install 1 dev environment per your license.
Just still confused. You want to have 1 feedback system that connects and authenticates users from 2 different login forms located outside UseResponse?
Our application is hosted in multiple geographic locations with their respective domain. We need to have one community platform that could collate all the feedback/Topics.
Now the problem here is that, request from individual application would have its own domain associated and since we have only one license, we can only authenticate to only one domain set in the OneLogin configuration and not handle others.
Could you help us out with possible solutions.
Our application is hosted in multiple geographic locations with their respective domain. We need to have one community platform that could collate all the feedback/Topics.
Now the problem here is that, request from individual application would have its own domain associated and since we have only one license, we can only authenticate to only one domain set in the OneLogin configuration and not handle others.
Could you help us out with possible solutions.
Hello,
Now it makes sense. And I think it would be possible to use multiple login forms on various domains. In order to accomplish it, please go to your SSO class and replace following line
self::$_options['source'] = $_SERVER['HTTP_HOST'];
with the following code
self::$_options['source'] = 'host';
Just make sure to put the same 'host' where class is located that is written in your UseResponse settings. For example it can be 'eurofinsus.com' Even if your host is different, use the only one host for multiple locations.
Let us know if the instructions are clear.
Hello,
Now it makes sense. And I think it would be possible to use multiple login forms on various domains. In order to accomplish it, please go to your SSO class and replace following line
self::$_options['source'] = $_SERVER['HTTP_HOST'];
with the following code
self::$_options['source'] = 'host';
Just make sure to put the same 'host' where class is located that is written in your UseResponse settings. For example it can be 'eurofinsus.com' Even if your host is different, use the only one host for multiple locations.
Let us know if the instructions are clear.
Replies have been locked on this page!