When the App tries to sign up a user, it doesn't work and returns the error:
Error Domain=NSCocoaErrorDomain Code=3840 "JSON text did not start with array or object and option to allow fragments not set." UserInfo={NSDebugDescription=JSON text did not start with array or object and option to allow fragments not set.}".
I've done research and couldn't find anything relevant to Parse.
Parse SDK: 1.12.0
Code:
user.signUpInBackgroundWithBlock { (succeeded: Bool, error: NSError?) -> Void in
if let error = error {
print(error.description)
} else {
self.performSegueWithIdentifier("signup_signin", sender: nil)
}
}