Something to note for people using the new Parse plug-in made by develophant.
There seem to be some quirk when mixing updates to several object including the user entry:
I have a Game object which is created on parse whenever a new multiplayer game is started.
In addition I update the user object on parse when user statistics are updated (play#, win# etc).
When I only update the user, the entry in parse is updated as expected. However, when I mix updates to the game object and to the user object in parse, the plug-in does not automatically add the “X-Parse-Session-Token” entry to the request header which causes the user object updates to fail.
The workaround is simple - for the time being I’m manually adding this entry to every user update.