允许无效的https证书访问,调用的是私有api,可以用于测试环境测试
#if DEBUG @implementation NSURLRequest (NSURLRequestWithIgnoreSSL) //调用的是私有api + (BOOL)allowsAnyHTTPSCertificateForHost:(NSString *)host { return YES; } @end #endif