Description
When logging into our app we're using the PFFacebookUtils method PFFacebookUtils.logInInBackgroundWithReadPermissions(self.permissions, block: {})
and that is working fine. The first time that is ran, the callback has the user.isNew
flag set to true and we go one path.
However I'm trying to test out the workflow where the user deletes the app from their phone and Facebook account.
In this instance when I hit the other path where user.isNew
is false in the callback, the new time I go to save the user after making updates to it, I get the error Facebook auth is invalid for this user.
.
Is this by design and is there something I have to do to get this workflow working? Or is this a bug?