如何使用cordova插件检测OTP

时间:2016-09-22 09:31:08

标签: android cordova cordova-plugins

我使用过这个插件“Phonegap-SMS-reception-plugin”,但我无法从命令提示符或手动安装它。 除此之外,我找不到任何其他插件来检测OTP并从混合移动应用程序中获取短信数据

1 个答案:

答案 0 :(得分:4)

该插件中缺少一些文件。使用此cordova-plugin-sms

<script type="text/javascript">

    var body = "";
    var address = "";

    $( document ).ready(function() {

        if(( /(ipad|iphone|ipod|android)/i.test(navigator.userAgent) )) {
            document.addEventListener('deviceready', initApp, false);
        } else {
            alert('need run on mobile device for full functionalities.');
        }

    });




            function startWatch() {  // start listening incoming sms
                if(SMS) SMS.startWatch(function(){
                    alert('watching', 'watching started');
                }, function(){
                    alert('failed to start watching');
                });
            }


            function stopWatch()  {   // stop listening incoming sms
                 if(SMS) SMS.stopWatch(function(){
                    update('watching', 'watching stopped');
                }, function(){
                    updateStatus('failed to stop watching');
                });

            }




        function initApp() {
        if (! SMS ) { alert( 'SMS plugin not ready' ); return; }


        document.addEventListener('onSMSArrive', function(e){
            var sms = e.data;

            body = sms.body;
            address = sms.address;

        });
    }


    </script>

确保该应用已阅读Marshmallow授予的短信权限。