Authy 的 TOTP 和 Phone 验证 API 有什么区别?

What is the difference between Authy's TOTP and Phone Verification APIs?

Phone 验证 API 只是 TOTP 的包装以简化流程,还是它们适用于完全不同的用例?

这里是 Authy 开发人员布道者。

如果想看更多Phone Verification API is useful for one off verifications by SMS or a phone call. Great if all you need to do is make sure your user owns the phone number they have entered. You can read my write up of how to implement phone verification in Rails

TOTP API returns 一个 Authy ID,您可以保存它并在 2FA 流程中使用它向您的用户发送验证码。当您随后将验证码发送给用户时,Authy 会判断他们是否拥有 Authy 应用程序并发送推送通知或短信。

它基本上是相同的技术,但是 TOTP 的情况有点复杂并且可以重复使用。

如果您想查看详细信息,我也写了 how to implement TOTP 2FA with Authy and Rails

这有什么帮助吗?