Firebase authWithOAuthToken&密码提供商

时间:2016-04-18 20:43:52

标签: java firebase firebase-authentication

是否可以使用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
        }
    });

0 个答案:

没有答案