Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

SSO Qlikview and web application

Hello everyone,

I made a Symfony web application using PHP which contains iframes to show Qliksense dashboard items.

When loading these dashboard items, every one of them shows a login page.

I don't want the user to login multiple times. I would like to integrate the authentication in my webapp's authentication.

How do i implement SSO for a webapplication (PHP)? I tried to search for a way to get this done but there isn't a lot of information about implementing these methods. Only some general information about how they work.

Thanks in advance.

1 Reply
gustavgager
Partner - Creator II
Partner - Creator II

I think you need to authenticate befor you actually get yo your website.

You could setup a new virtual proxy that redirects to your webapplication after authentication. That way, users first get to a logon-page and then gets redirected to your page when authentication is complete. If you are already logged in, you should get redirected automatically.

That of course means that the users need to go to the virtual proxy URL. But you could design your first page to detect the sense-tokens and if its not present, redirect the users to the login page. Should work.