MicroStrategy ONE
Disable the Login Confirmation Pop-Up in MicroStrategy Mobile When Signing in with Badge Biometrics
You can disable the Login Confirmation pop-up in the MicroStrategy Mobile app when signing in with the Badge Biometric option.
To use the feature:
- Configure the MicroStrategy Mobile applicaiton to login via MicroStrategy Identity.
- Add configurations in the Identity Server database for the mobile application. You can fetch {appId} in Network Manager > Logical Gateway > MicroStrategy Platform Login > Edit > "Application ID".
Execute the following SQL in the Identity Server database to delete the existing setting.
Copydelete from application_property where application_id = {appId} and name = 'mobile_app_skip_expose';Execute the following SQL in the Identity Server database to enable the new setting.
Copyinsert into application_property (status, application_id, name, value, created_ts, updated_ts) values (1, {appId}, 'mobile_app_skip_expose', 1, now(), now());Execute the following SQL to confirm the setting has been added successfully.
Copyselect * from application_property where application_id = {appId} and name = 'mobile_app_skip_expose' \G;
id: 25
status: 1
application_id: {appId}
name: mobile_app_skip_expose
value: 1
created_ts: 2020-07-15 02:52:06.000000
updated_ts: 2020-07-15 02:52:06.000000
- Restart the Identity Server.
To disable the feature:
-
Delete the configuration row generated above.
or
Update the value of the above configuration to 0.
- Restart the Identity Server after changing the configuration.
