You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If anybody still interested I'm providing a Kotlin snippet:
FirebaseAuth.getInstance().currentUser?.let {
val token = it.getIdToken(true).await()
ParseUser.logInWithInBackground("firebase", mapOf("id" to it.uid, "access_token" to token.token)).await()
}
Basically after you are logged in using Firebase, you must obtain the Firebase ID token and using it with with combination with the user ID agains the parse custom auth.
Hi,
could you please tell me how to interact with this adapter from android app?
The text was updated successfully, but these errors were encountered: