настоящее время я использую сервер Синтаксическая на Heroku, который я получил развертывается по этой ссылке над здесь:Анализировать Сервер Неподдерживаемое URL
https://github.com/ParsePlatform/parse-server-example#with-the-heroku-button
Вы просто нажать на кнопку, создать application ID, client key, and server URL
, который используется для подключения к сервер Parse от вашего кода iOS.
Теперь в моем приложении всякий раз, когда я начинаю его я получаю эту ошибку:
[Error]: Network connection failed. Making attempt 2 after sleeping for 2.252750 seconds.
[Error]: unsupported URL (Code: 100, Version: 1.12.0)
Даже когда я пытаюсь сделать запрос, чтобы захватить данные в PFFile в коде ниже я получаю ту же ошибку как указано выше:
override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCellWithIdentifier("cell", forIndexPath: indexPath) as! FollowersTableViewCell
cell.userNameLabel.text = followUsernameArray[indexPath.row]
let file = avaArray[indexPath.row]
file.getDataInBackgroundWithBlock { (data: NSData?, error: NSError?) in
if error == nil {
if let data = data {
//ERROR HERE. UNSUPPORTED URL!!??
let image = UIImage(data: data)
cell.avaImageView.image = image
}
}else if error != nil {
print("FROM FOLLOWERS TABLE VC cellForRowAtIndexPath: \(error?.localizedDescription)")
}
}
return cell
}
Я уже пошел Plist.info
и установить App Transport Security Settings
в Allow Arbitrary Loads
к YES
. Это также не устранило проблему. Кто-нибудь имеет какие-либо данные по этому поводу? Было бы очень признательно!
Какой код вы используете для инициализации Parse SDK? Вы должны изменить на что-то вроде этого: Parse.initialize (новый Parse.Configuration.Builder (это) .applicationId ("YOUR_APP_ID") .server ("http: // localhost: 1337/parse /") .build() ); –