Skip to content

Enroll OktaVerify with SMS channel name does not match expected value #337

@bdemers

Description

@bdemers

The IDXAuthenticationWrapper verifyAuthenticator() does not support the sms channel name, It assumes the channel name is phoneNumber instead.

if("phoneNumber".equals(verifyChannelDataOptions.getChannelName())) {
builder.withPhoneNumber(verifyChannelDataOptions.getValue());

I'm not sure there are places where the channelName might be phoneNumber if so, the above block should look something like:

if("phoneNumber".equals(verifyChannelDataOptions.getChannelName())
    || "sms".equals(verifyChannelDataOptions.getChannelName()) {

Metadata

Metadata

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions