本文整理汇总了Java中com.google.firebase.auth.AuthResult类的典型用法代码示例。如果您正苦于以下问题:Java AuthResult类的具体用法?Java AuthResult怎么用?Java AuthResult使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
AuthResult类属于com.google.firebase.auth包,在下文中一共展示了AuthResult类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: performFirebaseRegistration
import com.google.firebase.auth.AuthResult; //导入依赖的package包/类
@Override
public void performFirebaseRegistration(Activity activity, final String email, String password) {
FirebaseAuth.getInstance()
.createUserWithEmailAndPassword(email, password)
.addOnCompleteListener(activity, new OnCompleteListener<AuthResult>() {
@Override
public void onComplete(@NonNull Task<AuthResult> task) {
Log.e(TAG, "performFirebaseRegistration:onComplete:" + task.isSuccessful());
// If sign in fails, display a message to the user. If sign in succeeds
// the auth state listener will be notified and logic to handle the
// signed in user can be handled in the listener.
if (!task.isSuccessful()) {
mOnRegistrationListener.onFailure(task.getException().getMessage());
} else {
// Add the user to users table.
/*DatabaseReference database= FirebaseDatabase.getInstance().getReference();
User user = new User(task.getResult().getUser().getUid(), email);
database.child("users").push().setValue(user);*/
mOnRegistrationListener.onSuccess(task.getResult().getUser());
}
}
});
}
示例2: firebaseAuthWithGoogle
import com.google.firebase.auth.AuthResult; //导入依赖的package包/类
private void firebaseAuthWithGoogle(GoogleSignInAccount acct) {
LogUtil.logDebug(TAG, "firebaseAuthWithGoogle:" + acct.getId());
showProgress();
AuthCredential credential = GoogleAuthProvider.getCredential(acct.getIdToken(), null);
mAuth.signInWithCredential(credential)
.addOnCompleteListener(this, new OnCompleteListener<AuthResult>() {
@Override
public void onComplete(@NonNull Task<AuthResult> task) {
LogUtil.logDebug(TAG, "signInWithCredential:onComplete:" + task.isSuccessful());
// If sign in fails, display a message to the user. If sign in succeeds
// the auth state listener will be notified and logic to handle the
// signed in user can be handled in the listener.
if (!task.isSuccessful()) {
handleAuthError(task);
}
}
});
}
示例3: handleFacebookAccessToken
import com.google.firebase.auth.AuthResult; //导入依赖的package包/类
private void handleFacebookAccessToken(AccessToken token) {
Log.d(TAG, "handleFacebookAccessToken:" + token);
AuthCredential credential = FacebookAuthProvider.getCredential(token.getToken());
mAuth.signInWithCredential(credential)
.addOnCompleteListener(this, new OnCompleteListener<AuthResult>() {
@Override
public void onComplete(@NonNull Task<AuthResult> task) {
Log.d(TAG, "signInWithCredential:onComplete:" + task.isSuccessful());
// If sign in fails, display a message to the user. If sign in succeeds
// the auth state listener will be notified and logic to handle the
// signed in user can be handled in the listener.
if (!task.isSuccessful()) {
Log.w(TAG, "signInWithCredential", task.getException());
Toast.makeText(MainActivity.this, "Authentication failed.",
Toast.LENGTH_SHORT).show();
}
}
});
}
示例4: firebaseAuthWithGoogle
import com.google.firebase.auth.AuthResult; //导入依赖的package包/类
@Override
public void firebaseAuthWithGoogle(GoogleSignInAccount account,
final Callbacks.IResultCallback<Usuario> callback) {
showLog("firebaseAuthWithGoogle: " + account.getId());
AuthCredential credential = GoogleAuthProvider.getCredential(account.getIdToken(), null);
FirebaseAuth.getInstance()
.signInWithCredential(credential)
.addOnFailureListener( reportError(callback))
.addOnSuccessListener(new OnSuccessListener<AuthResult>() {
@Override
public void onSuccess(AuthResult authResult) {
FirebaseUser user = authResult.getUser();
loginFlow( user, callback);
}
});
}
示例5: firebaseAuthWithGoogle
import com.google.firebase.auth.AuthResult; //导入依赖的package包/类
private void firebaseAuthWithGoogle(GoogleSignInAccount acct) {
MyLg.d(TAG, "firebaseAuthWithGoogle:" + acct.getId()+" "+acct.getPhotoUrl());
showProgressDialog();
AuthCredential credential = GoogleAuthProvider.getCredential(acct.getIdToken(), null);
mAuth.signInWithCredential(credential)
.addOnCompleteListener(this, new OnCompleteListener<AuthResult>() {
@Override
public void onComplete(@NonNull Task<AuthResult> task) {
MyLg.d(TAG, "signInWithCredential:onComplete:" + task.isSuccessful());
// If sign in fails, display a message to the user. If sign in succeeds
// the auth state listener will be notified and logic to handle the
// signed in user can be handled in the listener.
if (!task.isSuccessful()) {
MyLg.w(TAG, "signInWithCredential");
Toas.show(context, "Authentication failed.");
}
hideProgressDialog();
}
});
}
示例6: handleFacebookAccessToken
import com.google.firebase.auth.AuthResult; //导入依赖的package包/类
private void handleFacebookAccessToken(AccessToken token) {
LogUtil.logDebug(TAG, "handleFacebookAccessToken:" + token);
showProgress();
AuthCredential credential = FacebookAuthProvider.getCredential(token.getToken());
mAuth.signInWithCredential(credential)
.addOnCompleteListener(this, new OnCompleteListener<AuthResult>() {
@Override
public void onComplete(@NonNull Task<AuthResult> task) {
LogUtil.logDebug(TAG, "signInWithCredential:onComplete:" + task.isSuccessful());
// If sign in fails, display a message to the user. If sign in succeeds
// the auth state listener will be notified and logic to handle the
// signed in user can be handled in the listener.
if (!task.isSuccessful()) {
handleAuthError(task);
}
}
});
}
示例7: firebaseAuthWithGoogle
import com.google.firebase.auth.AuthResult; //导入依赖的package包/类
private void firebaseAuthWithGoogle(GoogleSignInAccount acct) {
Log.d(TAG, "firebaseAuthWithGooogle:" + acct.getId());
AuthCredential credential = GoogleAuthProvider.getCredential(acct.getIdToken(), null);
mFirebaseAuth.signInWithCredential(credential)
.addOnCompleteListener(this, new OnCompleteListener<AuthResult>() {
@Override
public void onComplete(@NonNull Task<AuthResult> task) {
Log.d(TAG, "signInWithCredential:onComplete:" + task.isSuccessful());
// If sign in fails, display a message to the user. If sign in succeeds
// the auth state listener will be notified and logic to handle the
// signed in user can be handled in the listener.
if (!task.isSuccessful()) {
Log.w(TAG, "signInWithCredential", task.getException());
Toast.makeText(SignInActivity.this, "Authentication failed.",
Toast.LENGTH_SHORT).show();
} else {
startActivity(new Intent(SignInActivity.this, MainActivity.class));
finish();
}
}
});
}
示例8: startSession
import com.google.firebase.auth.AuthResult; //导入依赖的package包/类
protected void startSession() {
Log.i("scan.log", "Init database session" );
final ScannerDao scannerDao = new ScannerDao( this.context );
this.auth = FirebaseAuth.getInstance();
FirebaseUser currentUser = this.auth.getCurrentUser();
if( currentUser == null ) {
Log.i("scan.log", "No Has User connerct" );
this.auth.signInWithEmailAndPassword( "[email protected]", "123456" )
.addOnCompleteListener( new OnCompleteListener<AuthResult>() {
@Override
public void onComplete(@NonNull Task<AuthResult> task) {
if( task.isSuccessful() ) {
initDataBase( scannerDao );
}
}
});
} else {
Log.i("scan.log", "Has user connected" );
this.initDataBase( scannerDao );
}
}
示例9: setUp
import com.google.firebase.auth.AuthResult; //导入依赖的package包/类
@Before
public void setUp() throws Exception {
MockitoAnnotations.initMocks(this);
when(mockStorageHelpers.getApiKeyFromManifest(any(Context.class), eq(StorageHelpers
.DIGITS_CONSUMER_KEY_KEY))).thenReturn(DIGITS_CONSUMER_KEY);
when(mockStorageHelpers.getApiKeyFromManifest(any(Context.class), eq(StorageHelpers
.DIGITS_CONSUMER_SECRET_KEY))).thenReturn(DIGITS_CONSUMER_SECRET);
when(mockStorageHelpers.getApiKeyFromManifest(any(Context.class), eq(StorageHelpers
.FABRIC_API_KEY_KEY))).thenReturn(FABRIC_API_KEY);
authResult = new AuthResult() {
@Override
public FirebaseUser getUser() {
return mockFirebaseUser;
}
@Override
public AdditionalUserInfo getAdditionalUserInfo() {
return null;
}
};
authResultTask = Tasks.forResult(authResult);
}
示例10: signIn
import com.google.firebase.auth.AuthResult; //导入依赖的package包/类
private void signIn(String email, String password) {
Log.d(TAG, "signIn:" + email);
mAuth.signInWithEmailAndPassword(email, password)
.addOnCompleteListener(this, new OnCompleteListener<AuthResult>() {
@Override
public void onComplete(@NonNull Task<AuthResult> task) {
if (task.isSuccessful()) {
// Sign in success, update UI with the signed-in user's information
Log.d(TAG, "signInWithEmail:success");
FirebaseUser user = mAuth.getCurrentUser();
} else {
// If sign in fails, display a message to the user.
Log.w(TAG, "signInWithEmail:failure", task.getException());
}
}
});
}
示例11: authWithGithub
import com.google.firebase.auth.AuthResult; //导入依赖的package包/类
private void authWithGithub() {
FirebaseAuth mAuth = FirebaseAuth.getInstance();
// [START auth_with_github]
String token = "<GITHUB-ACCESS-TOKEN>";
AuthCredential credential = GithubAuthProvider.getCredential(token);
mAuth.signInWithCredential(credential)
.addOnCompleteListener(this, new OnCompleteListener<AuthResult>() {
@Override
public void onComplete(@NonNull Task<AuthResult> task) {
Log.d(TAG, "signInWithCredential:onComplete:" + task.isSuccessful());
// If sign in fails, display a message to the user. If sign in succeeds
// the auth state listener will be notified and logic to handle the
// signed in user can be handled in the listener.
if (!task.isSuccessful()) {
Log.w(TAG, "signInWithCredential", task.getException());
Toast.makeText(MainActivity.this, "Authentication failed.",
Toast.LENGTH_SHORT).show();
}
// ...
}
});
// [END auth_with_github]
}
示例12: onComplete
import com.google.firebase.auth.AuthResult; //导入依赖的package包/类
@Override
public void onComplete(@NonNull Task<AuthResult> task) {
if (task.isSuccessful()) {
FirebaseAuth firebaseAuth = SessionManager.getFirebaseAuth();
FirebaseUser currentUser = SessionManager.getFirebaseUser();
boolean isEmailVerified = currentUser.isEmailVerified();
// TODO zmienić z powrotem
if (true) {
updateLoginConfigInSharedPrefs();
SessionManager.initializeCurrentUserFirebaseListeners();
SessionManager.initializeFamilyMembersFirebaseListener();
Intent intent = new Intent(context, MainActivity.class);
context.startActivity(intent);
} else {
firebaseAuth.signOut();
Toast.makeText(context, R.string.email_not_verified, Toast.LENGTH_LONG).show();
}
} else {
logger.logWarn("Sign In Failure: " + task.getException());
Toast.makeText(context, R.string.invalid_email_or_password, Toast.LENGTH_LONG).show();
}
}
示例13: firebaseAuthWithGoogle
import com.google.firebase.auth.AuthResult; //导入依赖的package包/类
private void firebaseAuthWithGoogle(GoogleSignInAccount account) {
Log.d(TAG, "firebaseAuthWithGoogle:" + account.getId());
showProgressDialog();
AuthCredential credential = GoogleAuthProvider.getCredential(account.getIdToken(), null);
mAuth.signInWithCredential(credential)
.addOnCompleteListener(this, new OnCompleteListener<AuthResult>() {
@Override
public void onComplete(@NonNull Task<AuthResult> task) {
Log.d(TAG, "signInWithCredential:onComplete:" + task.isSuccessful());
hideProgressDialog();
// If sign in fails, display a message to the user. If sign in succeeds
// the auth state listener will be notified and logic to handle the
// signed in user can be handled in the listener.
if (!task.isSuccessful()) {
Log.w(TAG, "signInWithCredential", task.getException());
Toast.makeText(AuthActivity.this, R.string.auth_failed,
Toast.LENGTH_SHORT).show();
}
// ...
}
});
}
示例14: handleTwitterSession
import com.google.firebase.auth.AuthResult; //导入依赖的package包/类
private void handleTwitterSession(TwitterSession session) {
Utils.d("Twitter:HandleSession:" + session);
AuthCredential credential = TwitterAuthProvider.getCredential(
session.getAuthToken().token,
session.getAuthToken().secret);
mAuth.signInWithCredential(credential)
.addOnCompleteListener(activity, new OnCompleteListener<AuthResult>() {
@Override
public void onComplete(@NonNull Task<AuthResult> task) {
if (task.isSuccessful()) {
// Sign in success, update UI with the signed-in user's information
Utils.d("signInWithCredential:success");
} else {
// If sign in fails, display a message to the user.
Utils.w("signInWithCredential:failure: " + task.getException());
}
// ...
}
});
}
示例15: createAccount
import com.google.firebase.auth.AuthResult; //导入依赖的package包/类
public void createAccount(final String email, final String password) {
Utils.d("E&P:CreateAccount:" + email);
mAuth.createUserWithEmailAndPassword(email, password)
.addOnCompleteListener(activity, new OnCompleteListener<AuthResult>() {
@Override
public void onComplete(@NonNull Task<AuthResult> task) {
Utils.d("E&P:CreateUserWithEmail:onComplete:" + task.isSuccessful());
// If sign in fails, display a message to the user. If sign in succeeds
// the auth state listener will be notified and logic to handle the
// signed in user can be handled in the listener.
if (!task.isSuccessful()) {
Utils.d("E&P:CreateAccount:Error");
}
}
});
}