I’m trying to setup the passwordless/otp flow for my react native app and everything works except for the refresh tokens which are not included in the response from Auth0 API.
I am dealing with the same issue, do we have a way to implement passwordless sms/email otp codes and refresh tokens? If found that some posts that said that is possible and other that says it is not possible.
If is possible please tell us how we can achieve it. If not, is there a way to implement similar passwordless feature without having the users to login every single day?
Is there any update here? After implementing passwordless auth, I’m realizing users must login with SMS every day. This isn’t going to work. Are there options to keep users signed in for 30 days?
{
“client_id”: “xxxxxxxxxxxxx”,
“connection”: “sms”,
“phone_number”: “+91961…”, //set for connection=sms
“send”: “code” //if left null defaults to link
}
This gives back a 400 bad request. I have looked at the documentation and this seems to be good. Anyone has faced this kind of issue before??