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:

  1. Configure the MicroStrategy Mobile applicaiton to login via MicroStrategy Identity.
  2. 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".
    1. Execute the following SQL in the Identity Server database to delete the existing setting.

      Copy
      delete from application_property where application_id = {appId} and name = 'mobile_app_skip_expose';
    2. Execute the following SQL in the Identity Server database to enable the new setting.

      Copy
      insert into application_property (status, application_id, name, value, created_ts, updated_ts) values (1, {appId}, 'mobile_app_skip_expose', 1, now(), now());
    3. Execute the following SQL to confirm the setting has been added successfully.

      Copy
      select * 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
  3. Restart the Identity Server.

To disable the feature:

  1. Delete the configuration row generated above.

    or

    Update the value of the above configuration to 0.

  2. Restart the Identity Server after changing the configuration.