NSURLerrordomain错误-1202使用Appcelerator

时间:2016-03-01 14:04:18

标签: ios appcelerator appcelerator-titanium

我正在使用Appcelerator处理iPhone应用程序。应用程序中的所有内容都正常工作。但现在有一个警报显示在此。 Error ScreenShot

1 个答案:

答案 0 :(得分:0)

快速谷歌搜索应该会带您进入错误代码列表 (https://developer.apple.com/library/mac/documentation/Cocoa/Reference/Foundation/Miscellaneous/Foundation_Constants/index.html#//apple_ref/doc/constant_group/URL_Loading_System_Error_Codes

在这里,我们可以找到以下内容

  

NSURLErrorServerCertificateUntrusted = -1202

意味着服务器证书似乎存在问题。

快速搜索此错误可能会导致我们:

手机的时间可能不对

One of my iPhone users gets an NSURLErrorServerCertificateUntrusted error

修改

我没有使用appcelerator的经验。此解决方法仅适用于本机,但是,这个想法应该是相同的。

如果您使用的是NSUrlConnection,则需要解决方法:

使用

NSUrlConnection -connection:didReceiveAuthenticationChallenge:

HTTPS with NSURLConnection - NSURLErrorServerCertificateUntrusted