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

标签 ios swift heroku parse-platform app-transport-security

我正在编写一个快速的 iOS 应用程序,它使用 Heroku 上托管的 Parse。据我所知,所有数据传输都是通过 HTTPS 进行的,并且我没有对 info.plist 执行应用程序传输安全解决方法(并且打算保持这种状态)。到目前为止,所有 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/

相关文章:

iphone - UITableView cellForRowAtIndexPath 导致滚动缓慢

swift - 将图像上传到 Firebase 存储和数据库

node.js - 如何将 NodeJS 应用程序部署到 Heroku?

swift - 快速覆盖 setter

swift - Firebase Analytics 自定义事件 - 未解析的标识符名称和文本

ruby-on-rails - 从 Rails 服务器连接到 Socket.io 服务器

node.js - 如何在 nodejs 中使用 PostgreSQL 从 nodejs 导出 csv 文件

iphone - 如何在iPhone中下载并显示向下滚动scrollview的服务器图像

ios - 如何在 Swift iOS 中实现 iMessage 渐变?

ios - iPhone 4 中 IOS 7 中奇怪的 UIScrollview 行为