I can not update a record in Parse; Error: “object not found for update (Code: 101, Version: 1.2.16)”

后端 未结 5 2220
走了就别回头了
走了就别回头了 2020-12-18 22:19

I am using Parse as my backend for one of my native iOS app. I am not able to update a record on a table in Parse. First I query the object that I want to update it. So, \"o

5条回答
  •  盖世英雄少女心
    2020-12-18 23:07

    Error code 101 in Parse means :

    101: Object doesn't exist, or has an incorrect password.

    Obviously, your object exists since postArray returns 1 record, so we should look at something password-related. Maybe your "askedFriends" object have an PFACL object which disable the edition of this object if you are not log in with the PFUser associated.

    On Parse website, go to Dashboard, then Data Browser and select your "askedFriends" class.

    There is an ACL column, you should check it.

提交回复
热议问题