Just tried the MFA demo app. I didn't get the pho...
# general
g
Just tried the MFA demo app. I didn't get the phone OTP on my US number. Tried "Resend OTP" but no luck. Thoughts?
r
hey @gopi_65986 , there is a limit on how many SMSs we send for free daily. I think that limit may have been crossed. Let me check though
right yea, the free sms limit has been reached for today
instead, you can change the backend config for passwordless init to be:
Copy code
Passwordless.init({
            contactMethod: "EMAIL_OR_PHONE",
            flowType: "USER_INPUT_CODE_AND_MAGIC_LINK",
            smsDelivery: {
                override: (oI) => {
                    return {
                        ...oI,
                        sendSms: async (input) => {
                            console.log(input)
                        }
                    }
                }
            }
        }),
This will log out the otp on your terminal
g
Ok, thanks Rishabh. Will try this.
10 Views