是否可以使用firebase自己的密码提供程序调用authWithOAuthToken? 例如:
final Firebase user = ref.child("users").child(uid);
user.authWithOAuthToken("password", old_token, new Firebase.AuthResultHandler() {
@Override
public void onAuthenticated(AuthData authData) {
String new_token = authData.getToke();
//do autenticaded stuff
}
@Override
public void onAuthenticationError(FirebaseError firebaseError) {
// handle error
}
});