gpt4 book ai didi

ios - 为什么 swift parse .getDataInBackgroundWithBlock 被阻止为明文 http 请求?

转载 作者:塔克拉玛干 更新时间:2023-11-02 10:29:15 25 4
gpt4 key购买 nike

我正在编写一个使用托管在 Heroku 上的 Parse 的快速 iOS 应用程序。据我所知,所有数据传输都是通过 HTTPS 进行的,我没有对 info.plist 进行 App Transport Security 解决方法(并打算保持这种方式)。到目前为止,所有 Parse 查询在模拟器和运行 9.3.3 或 9.3.5 的实际 iphone 上都已正确执行。

直到现在我添加了这段代码,它在模拟器上完美运行,但由于通过 HTTP 发出的明文请求而在 iphone 上崩溃。但为什么要通过 HTTP 发出请求?

override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {

let cell = tableView.dequeueReusableCellWithIdentifier(idInstagramFeedCell, forIndexPath: indexPath) as! InstagramFeedCell

let imageFile = feed[indexPath.row].imageFile as PFFile
imageFile.getDataInBackgroundWithBlock({ (data, error) in
if let image = UIImage(data: data!) {
cell.postImage.image = image
} else {
cell.postImage.image = UIImage(named: defaultImageFile)
}
})

cell.postUsername.text = feed[indexPath.row].username
cell.postCaption.text = feed[indexPath.row].caption
return cell
}

有问题的行被隔离到 imageFile.getDataInBackgroundWithBlock({ ... }) 因为如果它被注释掉,应用程序不会在 iphone 上崩溃。

控制台中的错误是:

2016-08-18 18:51:56.074 ParseStarterProject-Swift[3694:2189084] App Transport Security has blocked a cleartext HTTP (http://) resource load since it is insecure. Temporary exceptions can be configured via your app's Info.plist file.
2016-08-18 18:51:56.081 ParseStarterProject-Swift[3694:2189342] [Error]: The resource could not be loaded because the App Transport Security policy requires the use of a secure connection. (Code: 100, Version: 1.12.0)
2016-08-18 18:51:56.081 ParseStarterProject-Swift[3694:2189342] [Error]: Network connection failed. Making attempt 1 after sleeping for 1.373388 seconds.
2016-08-18 18:51:56.084 ParseStarterProject-Swift[3694:2189342] [Error]: The resource could not be loaded because the App Transport Security policy requires the use of a secure connection. (Code: 100, Version: 1.12.0)

奇怪 this poster有一种相反的问题。任何帮助将不胜感激。

其他观察结果:我实际上只是在模拟器上看到它崩溃了。最初上传(即发布)到 Parse 的所有图像都是来自模拟器本身的照片。当在实际设备上运行的应用程序尝试下载这些图像时,它会按照上述方式崩溃。自从使用该应用程序后,我将实际设备上的几张照片发布到 Parse。当模拟器上运行的应用程序尝试下载这些照片时,模拟器崩溃并出现与上述相同的错误。

最佳答案

由 GitHub 上的 @luizmb 提供,解决方案很简单。显然有一个鲜为人知的(至少对我而言)解析服务器变量 publicServerURL 需要包含与 serverURL 相同的值。如果您依靠 Heroku Parse 控制台来管理您的实例,您可以通过定义环境变量 PARSE_PUBLIC_SERVER_URL 来设置它。如果您有自定义实例,则需要在实例化 Parse 时将此行添加到 index.js:

publicServerURL: process.env.PARSE_PUBLIC_SERVER_URL || process.env.PARSER_SERVER_URL || process.env.SERVER_URL,

但是有两个注意事项:1) 如果您像我一样在实现此解决方案之前上传了任何图像文件,您仍然可能会遇到 ATS 错误。要解决此问题,您需要像我一样从您的实例中删除所有此类图像。 2) 我只能让它在实际设备 (iOS 9.3.5) 上运行,但在模拟器 (iOS 9.3) 上运行完全相同的应用程序,ATS 错误没有显示,但这些我还没有找到方法绕过:

NSURLSession/NSURLConnection HTTP load failed (kCFStreamErrorDomainSSL, -9802)
[Error]: An SSL error has occurred and a secure connection to the server cannot be made. (Code: 100, Version: 1.14.2)
[Error]: Network connection failed. Making attempt 4 after sleeping for 15.848020 seconds.

此解决方案使您的应用能够从 Parse 下载图像文件,而无需通过 info.plist 中的 AllowArbitraryLoads 关闭 ATS。请看here for details .

关于ios - 为什么 swift parse .getDataInBackgroundWithBlock 被阻止为明文 http 请求?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39029619/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com