milesrichardson / ParsePy

A relatively up-to-date fork of ParsePy, the Python wrapper for the Parse.com API. Originally maintained by @dgrtwo
MIT License
515 stars 184 forks source link

datetime type in User class #162

Open amizukisato opened 7 years ago

amizukisato commented 7 years ago

When i tried to use a datetime in signup method, i 've got error.

ResourceRequestBadRequest: {"code":111,"error":"schema mismatch for _User.borndate; expected Date but got String"}

seems like this function converts all atributes to string

kajensen commented 7 years ago

Similar error- i'm not even setting the user, just updating another attribute (which are files).

parse_rest.core.ResourceRequestBadRequest: {"code":111,"error":"schema mismatch for Order.user; expected Pointer<_User> but got Pointer<User>"}

Edit: fixed with https://github.com/milesrichardson/ParsePy/issues/130