有没有办法在webview中自动检测OTP? 手机没有。使用OTP进行验证,并在应用webview中检测OTP。
提前致谢
答案 0 :(得分:1)
每当你通过短信获得OTP并通过接收方通知,那么在webview里面你想要添加你的OTP的那个输入文本你需要做这样的事情吗?
String otp = "OTP_FROM_YOUR_RECEIVER";
webview.loadUrl("javascript:document.getElementById('otp_input').value = '"+otp+"';");
以上代码只是您需要根据自己的要求进行更改的示例。
答案 1 :(得分:0)
这里是Kotlin中的代码:
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
<item name="windowNoTitle">true</item>
<item name="windowActionBar">false</item>
</style>
在字符串文件中放入“ fill_otp”:
if (Build.VERSION.SDK_INT >= 19) {
mWebView!!.evaluateJavascript(getString(R.string.fill_otp) + "\"$extractedOTP\";") { Log.e(TAG, it) }
} else {
mWebView!!.loadUrl(getString(R.string.fill_otp) + "\"$extractedOTP\";")
}