/// <summary> /// This is also an admin call, please do not use this for the normal game /// </summary> /// <param name="mfa_key"></param> /// <param name="secret"></param> /// <param name="onComplete"></param> public static void TwoFactorAuthVerification(string mfa_key, string secret, Action <LootLockerAuthResponse> onComplete) { if (!CheckInitialized()) { return; } var data = new LootLockerTwoFactorAuthVerficationRequest(); data.mfa_key = mfa_key; data.secret = secret; DemoAppAdminRequests.TwoFactorAuthVerification(data, onComplete); }