Closed
Description
Hi,
I create an ParseObject in client side,
then, try to update the record using below code.
ParseObject record = ParseObject.CreateWithoutData("LockRecord", objectID);
record.Increment("lock_count");
Task run_task = record.SaveAsync();
..
if(run_task.IsCanceled || run_task.IsFaulted)
{
// fail.....
}
the saveAsync() failed....
when I print out the exception msg, it said "invalid key name: _noBody"
this error happen after I host the server myself, it is not happened before~
Can someone give me some hints? Thanks a lot.