0
我需要讓我的用戶安裝包含在我的Phonegap應用程序中的根CA證書(就像您將包含圖像或JavaScript文件一樣)。我可以像標準嵌入式圖像一樣鏈接到文件。例如:保存包含在phonegap/cordova應用程序分發中的證書
<!-- this is an image included in the phonegap app -->
<img src="img/mylogo.png" />
<!-- this is the certificate also included in the phonegap app -->
<a href="cert/mycacert.cer">My Cert</a>
當我在iOS上打開應用程序並單擊鏈接到嵌入式證書時,沒有任何反應。我的目標是讓iOS提示安裝證書。有沒有更好的方法來做到這一點?
謝謝!