Parse Error 141: Uncaught userId Must Be a String
Parse default ACL is – everyone can read and everyone can write.
Even for their User class.
That is a rather bad design.
The ‘Solution’
Parse official rep answered that you may use cloud code to apply an ACL with a beforeSave trigger.
Nice.
Until you get error the error:
Parse error 141 - Uncaught userId must be a string
And in your cloud code log, you clearly see an Uncaught userId must be a string
The Correct Solution
The correct way is to use the afterSave trigger (not beforeSave).
1 2 3 4 5 6 7 8 |
|
I wasted quite some time as I was misled by a flawed solution by a Parse rep.
And, I believed there are others who were misled, yet no one can reply to the flawed solution because comments are closed..