Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
In an IOS Qlik sense App When i log in to my Qlik sense enterprise edition with form authentication I am not prompted to decide if the Qlik Sense Mobile app will store your user name and password.
Every time user Qik on our server it asks for credentials
Hi,
If you are using a custom webform to authenticate, web form needs to be modified so that the app is allowed to scrape information from that webform and save it in Apple keychain. This is a security measure to allow admins control of username and password caching. A lot of our customers do not like apps to store passwords in the keychain and they use custom webforms to avoid scraping of this information.
Your web or IT team need to modify the HTML /CSS/ Javascript of the webform, locate the username and password fields as well as the login button on that form, and insert the following CSS selectors in the DOM element
Field |
CSS selector of DOM element |
Username text field |
.qlik-username |
Password text field |
.qlik-password |
Login button |
.qlik-submit |
Regards,.
Vinay
Hi,
If you are using a custom webform to authenticate, web form needs to be modified so that the app is allowed to scrape information from that webform and save it in Apple keychain. This is a security measure to allow admins control of username and password caching. A lot of our customers do not like apps to store passwords in the keychain and they use custom webforms to avoid scraping of this information.
Your web or IT team need to modify the HTML /CSS/ Javascript of the webform, locate the username and password fields as well as the login button on that form, and insert the following CSS selectors in the DOM element
Field |
CSS selector of DOM element |
Username text field |
.qlik-username |
Password text field |
.qlik-password |
Login button |
.qlik-submit |
Regards,.
Vinay