Rails 用户使用 phone 号码注册时的双重身份验证
Rails two factor authentication when user signing up with phone number
我已经使用以下 gem.
实现了双因素身份验证
https://github.com/Houdini/two_factor_authentication
文档简单明了。这在用户尝试登录时工作正常。但是在 user.rb 中注册以下操作时不起作用。
def send_two_factor_authentication_code(code)
end
上面的代码就是生成的OTP
https://github.com/Houdini/two_factor_authentication
当用户也在注册时,如何使上述操作生效?
作为这个问题的 OP,我已经按照下面这个简单的解决方案来实现它并且它完美地工作。
https://www.mccartie.com/tech/2015/10/20/sms-verification.html
我已经使用以下 gem.
实现了双因素身份验证https://github.com/Houdini/two_factor_authentication
文档简单明了。这在用户尝试登录时工作正常。但是在 user.rb 中注册以下操作时不起作用。
def send_two_factor_authentication_code(code)
end
上面的代码就是生成的OTP
https://github.com/Houdini/two_factor_authentication
当用户也在注册时,如何使上述操作生效?
作为这个问题的 OP,我已经按照下面这个简单的解决方案来实现它并且它完美地工作。
https://www.mccartie.com/tech/2015/10/20/sms-verification.html