Closed
Description
In Using Parse SDKs with Parse Server
Swift code uses localhost.com
instead of localhost
.
Code was:
let configuration = ParseClientConfiguration {
$0.applicationId = "YOUR_APP_ID"
$0.clientKey = ""
$0.server = "http://localhost.com:1337/parse"
}
Parse.initializeWithConfiguration(configuration)
Should be:
let configuration = ParseClientConfiguration {
$0.applicationId = "YOUR_APP_ID"
$0.clientKey = ""
$0.server = "http://localhost:1337/parse"
}
Parse.initializeWithConfiguration(configuration)