我使用我们的后端开发了一个移动应用程序,以使用 Authy 注册和验证用户。这由后端分 3 步完成:
1/ 应用程序请求后端注册用户。后端调用https://api.authy.com/protected/json/users/new(电子邮件、手机、国家代码)。它提供了稍后使用的 userId。
2/ 应用程序请求后端向用户发送短信代码。后端调用https://api.authy.com/protected/json/sms/ {1}?locale={2}{3}" (userId, language, force)
3/ 用户现在收到短信。他将其填写在移动应用程序中,最终发送到后端进行验证。后端调用https://api.authy.com/protected/json/verify/{1}/{2}{3}"(token、userId、force)
我想在我的移动应用程序(https://developers.google.com/identity/sms-retriever/overview)中使用带有 SMS Retriever API 的自动 SMS 验证,以避免用户输入验证码的麻烦。它需要在验证码中设置哈希,但不幸的是,我似乎无法控制 Authy 生成的内容。
我在这里错过了什么让它工作吗?
Rgds
R。