how it possible to get callback after calling logInWithInBackground? currently I'm using below code for login but don't know how to get it success result.
Task<ParseUser> parseUserTask = ParseUser.logInWithInBackground("facebookaccountkit", authData);
I want to send user to another activity after successful login.
api links:
https://parseplatform.org/Parse-SDK-Android/api/com/parse/AuthenticationCallback.html
You can use a continuation:
this is taken from Google OAuth Configuration