@oneblink/apps-react
    Preparing search index...

    Function generateMfaAuthenticatorAppQrCodeUrl

    • Generate a QR code link to display to a user after they have initiated authenticator app MFA setup.

      const mfaAuthenticatorAppSetupQrCodeUrl =
      mfaService.generateMfaAuthenticatorAppQrCodeUrl()
      if (mfaAuthenticatorAppSetupQrCodeUrl) {
      // use mfaAuthenticatorAppSetupQrCodeUrl to display QR code to user
      }

      Parameters

      • mfaAuthenticatorAppSetup:
            | {
                mfaCodeCallback: (code: string) => Promise<void>;
                secretCode: string | undefined;
            }
            | undefined

      Returns string | undefined