gpt4 book ai didi

android - Facebook 帐户工具包 - 在 OTP 屏幕 UI、android 上自动插入 OTP 代码

转载 作者:搜寻专家 更新时间:2023-11-01 08:34:36 26 4
gpt4 key购买 nike

我正在使用 Facebook AccountKit 进行 OTP 验证,它工作得非常好。

要求:通过读取收到的短信自动在 OTP 验证屏幕上设置 OTP 代码。

正在寻找:有什么方法可以将文本设置为 OTP 验证 screen以编程方式?

在搜索 Facebook 是否在 OTP 验证屏幕上提供自定义时,我没有找到任何答案,因为他们在用户可以输入国家代码和手机号码的第一个屏幕上提供相同的信息。

最佳答案

Facebook 提供了两个 boolean 用于自动读取 OTP 消息。

AccountKitConfiguration.AccountKitConfigurationBuilder configurationBuilder =
new AccountKitConfiguration.AccountKitConfigurationBuilder(LoginType.PHONE
, AccountKitActivity.ResponseType.TOKEN);

// Add these code
configurationBuilder.setReadPhoneStateEnabled(true);
configurationBuilder.setReceiveSMS(true);

你还需要在AndroidManifest.xml文件中添加这两个权限:

<uses-permission android:name="android.permission.READ_SMS" />
<uses-permission android:name="android.permission.RECEIVE_SMS" />

For API >= 23: Check if above permissions granted or not.

更新:

As @markus suggested please review the SMS permission updates.

关于android - Facebook 帐户工具包 - 在 OTP 屏幕 UI、android 上自动插入 OTP 代码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37852018/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com