Handling Invalid Session & Clearing Session

I already have an error function to handle expired sessions using the following:
switch (err.code) {
case Parse.Error.INVALID_SESSION_TOKEN:
Parse.User.logOut();

Are there other session error values I should be trying to catch in order to force the logout for a non-existing or invalid session?

1 Like

do you have any news on this?