我正在尝试使用 SSL 从 URL 将平铺图像下载到 GMSTileLayer。
GMSTileLayer 包含一个将瓦片加载到谷歌地图图层中的委托方法:
override func requestTileFor(x: UInt, y: UInt, zoom: UInt, receiver: GMSTileReceiver) {
let url = URL(string: "\(urlPrefix)x=\(x)&y=\(y)&z=\(zoom)&is2d=t")
let zoom = UInt((self.map?.camera.zoom)!)
Alamofire.request(url!).responseImage { response in
if let image = response.result.value {
receiver.receiveTileWith(x: x, y: y, zoom: zoom, image: image)
}
}
}
调用此函数时,我收到以下错误消息:
2017-06-22 09:55:49.192 PPGaugeApp[78556:4886424] NSURLSession/NSURLConnection HTTP load failed (kCFStreamErrorDomainSSL, -9801)
2017-06-22 09:55:49.274328-0400 PPGaugeApp[78556:4886488] [] nw_coretls_read_one_record tls_handshake_process: [-9801]
我已经通过在浏览器中进行测试来验证网址是否正在返回图像。
在研究此错误时,几乎所有帖子都建议对 plist 进行一些更改,以至少包含以下内容:
NSAllowsArbitraryLoads
我当前的 plist 设置如下:
<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsArbitraryLoads</key>
<true/>
<key>NSExceptionDomains</key>
<dict>
<key>someDomain.com</key>
<dict>
<key>NSIncludesSubdomains</key>
<true/>
<key>NSExceptionAllowsInsecureHTTPLoads</key>
<true/>
<key>NSExceptionRequiresForwardSecrecy</key>
<true/>
<key>NSExceptionMinimumTLSVersion</key>
<string>TLSv1.2</string>
<key>NSThirdPartyExceptionAllowsInsecureHTTPLoads</key>
<false/>
<key>NSThirdPartyExceptionRequiresForwardSecrecy</key>
<true/>
<key>NSThirdPartyExceptionMinimumTLSVersion</key>
<string>TLSv1.2</string>
<key>NSRequiresCertificateTransparency</key>
<false/>
</dict>
</dict>
</dict>
plist 中的任何内容似乎都对此错误消息没有任何影响。我们应用程序中的其他类使用 https 进行身份验证没有问题,但是这是我们通过 https url 下载文件的唯一地方。
还有其他地方我们应该检查吗?谢谢!