http请求https webservice?

时间:2012-03-11 17:47:15

标签: jquery mobile jquery-mobile cordova

我正在使用PhoneGap和jQuery Mobile开发移动应用程序。根据我的阅读,您无法向https Web服务发出http请求。因此,当应用程序在手机上运行时,您如何向https网络服务发出请求?

1 个答案:

答案 0 :(得分:4)

你试过吗?

因为我正在使用PhoneGap和Sencha Touch开发的应用程序以及对HTTPS Web服务的HTTP请求工作正常。

<强>更新

尝试在AppDelegate.m文件末尾添加此内容

@implementation NSURLRequest(DataController)
+ (BOOL)allowsAnyHTTPSCertificateForHost:(NSString *)host
{
    return YES; 
}
@end