-
-
Notifications
You must be signed in to change notification settings - Fork 4.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Error iOS sdk version 1.13.0: schema mismatch for _Session.user; expected Pointer but got String #2042
Comments
This was due to a breaking change in |
@drew-gross I usually download the ios sdk from this link https://github.com/ParsePlatform/Parse-SDK-iOS-OSX/releases/tag/1.13.0, and it doesn't have iOS idk 2.2.13? may you please be so kind to provide the link to iOS sdk 2.2.13? |
No your Parse Server, not your iOS SDK. |
Issue Description:
I'm having problems with signing in and sign up iOS sdk.
I setup parse server on heroku, tested it with:
let testObject = PFObject(className: "TestObject")
testObject["foo"] = "bar"
testObject.saveInBackgroundWithBlock { (success: Bool, error: NSError?) -> Void in
print("Object has been saved.")
}
and the object saved successfully to mLab.
Then when I tried to sign a user up or log a user in. I got an error:
schema mismatch for _Session.user; expected Pointer but got String
There was an issue already posted but it was closed and was for the js SDK. how would one solve this for iOS sdk?
The text was updated successfully, but these errors were encountered: