allowAnyHTTPSCertificateForHost不工作​​ios 10 phonegap

时间:2017-01-30 12:46:05

标签: javascript cordova

我在AppDelegate中添加了

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

在plist我已经包括:

<key>NSAppTransportSecurity</key>
<dict>
    <key>NSAllowsArbitraryLoadsInWebContent</key>
    <true/>
    <key>NSAllowsArbitraryLoads</key>
    <true/>
</dict>

我向非安全API发出请求 I'm making the requests to a non-secure api

有人也有同样的问题吗?

0 个答案:

没有答案