We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The IDXAuthenticationWrapper verifyAuthenticator() does not support the sms channel name, It assumes the channel name is phoneNumber instead.
IDXAuthenticationWrapper
verifyAuthenticator()
sms
phoneNumber
okta-idx-java/api/src/main/java/com/okta/idx/sdk/api/client/IDXAuthenticationWrapper.java
Lines 467 to 468 in 61e61de
I'm not sure there are places where the channelName might be phoneNumber if so, the above block should look something like:
channelName
if("phoneNumber".equals(verifyChannelDataOptions.getChannelName()) || "sms".equals(verifyChannelDataOptions.getChannelName()) {
The text was updated successfully, but these errors were encountered:
Internal Ref: OKTA-494731
Sorry, something went wrong.
arvindkrishnakumar-okta
No branches or pull requests
The
IDXAuthenticationWrapper
verifyAuthenticator()
does not support thesms
channel name, It assumes the channel name isphoneNumber
instead.okta-idx-java/api/src/main/java/com/okta/idx/sdk/api/client/IDXAuthenticationWrapper.java
Lines 467 to 468 in 61e61de
I'm not sure there are places where the
channelName
might bephoneNumber
if so, the above block should look something like:The text was updated successfully, but these errors were encountered: