简体   繁体   中英

How to solve HTTPS issue in phonegap

 <script>

 $.getJSON('https://test.engageport.com/rest/mobile/1', function (data) {
            var ordercodes = $.map(data.data, function(entry){

            Result= entry.ordercode; }
   }
</script>

I am using json url as https://test.engageport.com/rest/mobile/1 . In phone-gap i cant get the response. I am getting error like data['null'] is not an object. How to solve this issue. http url is working fine. HTTPS is the problem.

Your HTTPS url does not provide a valid SSL Certificate, so your application can't reach it. You can use a valid certificate or install your untrusted certificate on your phone.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM