You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/main/java/com/auth0/client/auth/AuthAPI.java
+13-45Lines changed: 13 additions & 45 deletions
Original file line number
Diff line number
Diff line change
@@ -1396,7 +1396,7 @@ public Request<CreatedOtpResponse> addOtpAuthenticator(String mfaToken) {
1396
1396
}
1397
1397
1398
1398
/**
1399
-
* Associates or adds a new phone based OOB authenticator for multi-factor authentication (MFA).
1399
+
* Associates or adds a new OOB authenticator for multi-factor authentication (MFA).
1400
1400
* Confidential clients (Regular Web Apps) <strong>must</strong> have a client secret configured on this {@code AuthAPI} instance.
1401
1401
* <pre>
1402
1402
* {@code
@@ -1413,12 +1413,19 @@ public Request<CreatedOtpResponse> addOtpAuthenticator(String mfaToken) {
1413
1413
* @param mfaToken The token received from mfa_required error. Must not be null.
1414
1414
* @param oobChannels The type of OOB channels supported by the client. Must not be null.
1415
1415
* @param phoneNumber The phone number for "sms" or "voice" channels. May be null if not using "sms" or "voice".
1416
+
* @param emailAddress The email address for "email" channel. May be null if not using "email".
1416
1417
* @return a Request to execute.
1417
1418
* @see <a href="https://auth0.com/docs/secure/multi-factor-authentication/authenticate-using-ropg-flow-with-mfa/enroll-challenge-sms-voice-authenticators#enroll-with-sms-or-voice">Enroll with SMS or voice</a>
0 commit comments