Firebase में उपयोगकर्ताओं को मैनेज करें

उपयोगकर्ता बनाएं

आप createUserWithEmailAndPassword करने का तरीका इस्तेमाल करें या फ़ेडरेटेड आइडेंटिटी का इस्तेमाल करके पहली बार साइन इन करें जैसे, Google साइन-इन या Facebook में लॉगिन करें.

पुष्टि करने की सुविधा से, पासवर्ड की पुष्टि करने वाले नए उपयोगकर्ता भी बनाए जा सकते हैं उपयोगकर्ता पेज पर Firebase कंसोल का सेक्शन देखें.

वर्तमान में प्रवेश किए हुए उपयोगकर्ता को पाएं

वर्तमान उपयोगकर्ता पाने का सुझाया गया तरीका getCurrentUser तरीके को कॉल करना है. अगर किसी भी उपयोगकर्ता ने साइन इन नहीं किया है, तो getCurrentUser शून्य दिखाता है:

Kotlin+KTX

val user = Firebase.auth.currentUser
if (user != null) {
    // User is signed in
} else {
    // No user is signed in
}

Java

FirebaseUser user = FirebaseAuth.getInstance().getCurrentUser();
if (user != null) {
    // User is signed in
} else {
    // No user is signed in
}

कुछ मामलों में getCurrentUser, शून्य के अलावा FirebaseUser दिखाएगा लेकिन, दिया गया टोकन मान्य नहीं है. ऐसा हो सकता है, उदाहरण के लिए, यदि उपयोगकर्ता किसी दूसरे डिवाइस पर मिटा दिया गया था और लोकल टोकन रीफ़्रेश नहीं हुआ है. इस मामले में, आपको एक मान्य उपयोगकर्ता getCurrentUser मिल सकता है, लेकिन पुष्टि के लिए बाद में कॉल किए जाते हैं संसाधन काम नहीं करेंगे.

getCurrentUser भी null वैल्यू दिखा सकता है, क्योंकि ऑथराइज़ेशन ऑब्जेक्ट ऐसा नहीं करता है पूरा हो चुका है.

अगर AuthStateListener को अटैच किया जाता है हर बार मौजूदा टोकन की स्थिति बदलने पर, आपको कॉलबैक मिलेगा. यह काम कर सकता है किनारे वाले मामलों पर प्रतिक्रिया देने में मदद मिलती है, जैसा कि ऊपर बताया गया है.

उपयोगकर्ता की प्रोफ़ाइल पाएं

किसी उपयोगकर्ता की प्रोफ़ाइल जानकारी प्राप्त करने के लिए, FirebaseUser. उदाहरण के लिए:

Kotlin+KTX

val user = Firebase.auth.currentUser
user?.let {
    // Name, email address, and profile photo Url
    val name = it.displayName
    val email = it.email
    val photoUrl = it.photoUrl

    // Check if user's email is verified
    val emailVerified = it.isEmailVerified

    // The user's ID, unique to the Firebase project. Do NOT use this value to
    // authenticate with your backend server, if you have one. Use
    // FirebaseUser.getIdToken() instead.
    val uid = it.uid
}

Java

FirebaseUser user = FirebaseAuth.getInstance().getCurrentUser();
if (user != null) {
    // Name, email address, and profile photo Url
    String name = user.getDisplayName();
    String email = user.getEmail();
    Uri photoUrl = user.getPhotoUrl();

    // Check if user's email is verified
    boolean emailVerified = user.isEmailVerified();

    // The user's ID, unique to the Firebase project. Do NOT use this value to
    // authenticate with your backend server, if you have one. Use
    // FirebaseUser.getIdToken() instead.
    String uid = user.getUid();
}

उपयोगकर्ता की कंपनी से जुड़ी प्रोफ़ाइल की जानकारी पाना

किसी उपयोगकर्ता, getProviderData तरीके का इस्तेमाल करें. उदाहरण के लिए:

Kotlin+KTX

val user = Firebase.auth.currentUser
user?.let {
    for (profile in it.providerData) {
        // Id of the provider (ex: google.com)
        val providerId = profile.providerId

        // UID specific to the provider
        val uid = profile.uid

        // Name, email address, and profile photo Url
        val name = profile.displayName
        val email = profile.email
        val photoUrl = profile.photoUrl
    }
}

Java

FirebaseUser user = FirebaseAuth.getInstance().getCurrentUser();
if (user != null) {
    for (UserInfo profile : user.getProviderData()) {
        // Id of the provider (ex: google.com)
        String providerId = profile.getProviderId();

        // UID specific to the provider
        String uid = profile.getUid();

        // Name, email address, and profile photo Url
        String name = profile.getDisplayName();
        String email = profile.getEmail();
        Uri photoUrl = profile.getPhotoUrl();
    }
}

उपयोगकर्ता की प्रोफ़ाइल अपडेट करना

आपके पास उपयोगकर्ता की प्रोफ़ाइल की बुनियादी जानकारी—उपयोगकर्ता का डिसप्ले नेम अपडेट करने का विकल्प होता है और प्रोफ़ाइल फ़ोटो का यूआरएल—updateProfile तरीके का इस्तेमाल करके. उदाहरण के लिए:

Kotlin+KTX

val user = Firebase.auth.currentUser

val profileUpdates = userProfileChangeRequest {
    displayName = "Jane Q. User"
    photoUri = Uri.parse("https://example.com/jane-q-user/profile.jpg")
}

user!!.updateProfile(profileUpdates)
    .addOnCompleteListener { task ->
        if (task.isSuccessful) {
            Log.d(TAG, "User profile updated.")
        }
    }

Java

FirebaseUser user = FirebaseAuth.getInstance().getCurrentUser();

UserProfileChangeRequest profileUpdates = new UserProfileChangeRequest.Builder()
        .setDisplayName("Jane Q. User")
        .setPhotoUri(Uri.parse("https://example.com/jane-q-user/profile.jpg"))
        .build();

user.updateProfile(profileUpdates)
        .addOnCompleteListener(new OnCompleteListener<Void>() {
            @Override
            public void onComplete(@NonNull Task<Void> task) {
                if (task.isSuccessful()) {
                    Log.d(TAG, "User profile updated.");
                }
            }
        });

उपयोगकर्ता का ईमेल पता सेट करें

updateEmail तरीके का इस्तेमाल करके, उपयोगकर्ता का ईमेल पता सेट किया जा सकता है. उदाहरण के लिए:

Kotlin+KTX

val user = Firebase.auth.currentUser

user!!.updateEmail("user@example.com")
    .addOnCompleteListener { task ->
        if (task.isSuccessful) {
            Log.d(TAG, "User email address updated.")
        }
    }

Java

FirebaseUser user = FirebaseAuth.getInstance().getCurrentUser();

user.updateEmail("user@example.com")
        .addOnCompleteListener(new OnCompleteListener<Void>() {
            @Override
            public void onComplete(@NonNull Task<Void> task) {
                if (task.isSuccessful()) {
                    Log.d(TAG, "User email address updated.");
                }
            }
        });

उपयोगकर्ता को पुष्टि करने के लिए ईमेल भेजें

आप ऐसे उपयोगकर्ता को पते की पुष्टि करने के लिए ईमेल भेज सकते हैं जिसके पास sendEmailVerification तरीका. उदाहरण के लिए:

Kotlin+KTX

val user = Firebase.auth.currentUser

user!!.sendEmailVerification()
    .addOnCompleteListener { task ->
        if (task.isSuccessful) {
            Log.d(TAG, "Email sent.")
        }
    }

Java

FirebaseAuth auth = FirebaseAuth.getInstance();
FirebaseUser user = auth.getCurrentUser();

user.sendEmailVerification()
        .addOnCompleteListener(new OnCompleteListener<Void>() {
            @Override
            public void onComplete(@NonNull Task<Void> task) {
                if (task.isSuccessful()) {
                    Log.d(TAG, "Email sent.");
                }
            }
        });

आप उस ईमेल टेम्प्लेट को कस्टमाइज़ कर सकते है जिसका उपयोग के प्रमाणीकरण अनुभाग में किया जाता है ईमेल टेंप्लेट के पेज पर, Firebase कंसोल में दिखेगा. इसमें ईमेल टेम्प्लेट देखें Firebase सहायता केंद्र.

राज्य को किसी वापस रीडायरेक्ट करने के लिए यूआरएल जारी रखें को ऐप पर अपडेट करें.

इसके अलावा, पुष्टि करने के लिए लिंक की भाषा अपडेट करके, उसे स्थानीय भाषा में भेजा जा सकता है ईमेल भेजने से पहले Auth इंस्टेंस पर कोड. उदाहरण के लिए:

Kotlin+KTX

auth.setLanguageCode("fr")
// To apply the default app language instead of explicitly setting it.
// auth.useAppLanguage()

Java

auth.setLanguageCode("fr");
// To apply the default app language instead of explicitly setting it.
// auth.useAppLanguage();

उपयोगकर्ता का पासवर्ड सेट करना

updatePassword तरीके से उपयोगकर्ता का पासवर्ड सेट किया जा सकता है. उदाहरण के लिए:

Kotlin+KTX

val user = Firebase.auth.currentUser
val newPassword = "SOME-SECURE-PASSWORD"

user!!.updatePassword(newPassword)
    .addOnCompleteListener { task ->
        if (task.isSuccessful) {
            Log.d(TAG, "User password updated.")
        }
    }

Java

FirebaseUser user = FirebaseAuth.getInstance().getCurrentUser();
String newPassword = "SOME-SECURE-PASSWORD";

user.updatePassword(newPassword)
        .addOnCompleteListener(new OnCompleteListener<Void>() {
            @Override
            public void onComplete(@NonNull Task<Void> task) {
                if (task.isSuccessful()) {
                    Log.d(TAG, "User password updated.");
                }
            }
        });

पासवर्ड रीसेट करने के लिए ईमेल भेजें

आपके पास sendPasswordResetEmail वाले किसी उपयोगकर्ता को पासवर्ड फिर सेट करने का ईमेल भेजने का विकल्प है तरीका. उदाहरण के लिए:

Kotlin+KTX

val emailAddress = "user@example.com"

Firebase.auth.sendPasswordResetEmail(emailAddress)
    .addOnCompleteListener { task ->
        if (task.isSuccessful) {
            Log.d(TAG, "Email sent.")
        }
    }

Java

FirebaseAuth auth = FirebaseAuth.getInstance();
String emailAddress = "user@example.com";

auth.sendPasswordResetEmail(emailAddress)
        .addOnCompleteListener(new OnCompleteListener<Void>() {
            @Override
            public void onComplete(@NonNull Task<Void> task) {
                if (task.isSuccessful()) {
                    Log.d(TAG, "Email sent.");
                }
            }
        });

आप उस ईमेल टेम्प्लेट को कस्टमाइज़ कर सकते है जिसका उपयोग के प्रमाणीकरण अनुभाग में किया जाता है ईमेल टेंप्लेट के पेज पर, Firebase कंसोल में दिखेगा. इसमें ईमेल टेम्प्लेट देखें Firebase सहायता केंद्र.

राज्य को किसी वापस रीडायरेक्ट करने के लिए यूआरएल जारी रखें ऐप्लिकेशन को पासवर्ड रीसेट ईमेल भेजते समय.

इसके अलावा, पासवर्ड रीसेट ईमेल की भाषा अपडेट करके उसे स्थानीय भाषा में भी बदला जा सकता है ईमेल भेजने से पहले Auth इंस्टेंस पर कोड. उदाहरण के लिए:

Kotlin+KTX

auth.setLanguageCode("fr")
// To apply the default app language instead of explicitly setting it.
// auth.useAppLanguage()

Java

auth.setLanguageCode("fr");
// To apply the default app language instead of explicitly setting it.
// auth.useAppLanguage();

Firebase कंसोल से, पासवर्ड फिर से सेट करने के ईमेल भी भेजे जा सकते हैं.

उपयोगकर्ता को हटाना

आपके पास delete तरीके से किसी उपयोगकर्ता खाते को मिटाने का विकल्प होता है. उदाहरण के लिए:

Kotlin+KTX

val user = Firebase.auth.currentUser!!

user.delete()
    .addOnCompleteListener { task ->
        if (task.isSuccessful) {
            Log.d(TAG, "User account deleted.")
        }
    }

Java

FirebaseUser user = FirebaseAuth.getInstance().getCurrentUser();

user.delete()
        .addOnCompleteListener(new OnCompleteListener<Void>() {
            @Override
            public void onComplete(@NonNull Task<Void> task) {
                if (task.isSuccessful()) {
                    Log.d(TAG, "User account deleted.");
                }
            }
        });

आप चाहें, तो Firebase कंसोल, उपयोगकर्ताओं के पेज पर.

किसी उपयोगकर्ता की फिर से पुष्टि करें

सुरक्षा के लिए संवेदनशील कार्रवाइयां—जैसे खाता मिटाना, मुख्य ईमेल पता सेट करना और पासवर्ड बदलना—यह ज़रूरी है कि उपयोगकर्ता के पास हाल ही में साइन इन किया है. अगर इनमें से कोई भी कार्रवाई की जाती है और उपयोगकर्ता ने साइन इन किया हुआ है कुछ समय पहले ही, कार्रवाई पूरी नहीं हो पाती और FirebaseAuthRecentLoginRequiredException दिखता है. ऐसा होने पर, साइन इन करने के लिए नए क्रेडेंशियल हासिल करके, उपयोगकर्ता की फिर से पुष्टि करें उपयोगकर्ता से और reauthenticate को क्रेडेंशियल पास करना. उदाहरण के लिए:

Kotlin+KTX

val user = Firebase.auth.currentUser!!

// Get auth credentials from the user for re-authentication. The example below shows
// email and password credentials but there are multiple possible providers,
// such as GoogleAuthProvider or FacebookAuthProvider.
val credential = EmailAuthProvider
    .getCredential("user@example.com", "password1234")

// Prompt the user to re-provide their sign-in credentials
user.reauthenticate(credential)
    .addOnCompleteListener { Log.d(TAG, "User re-authenticated.") }

Java

FirebaseUser user = FirebaseAuth.getInstance().getCurrentUser();

// Get auth credentials from the user for re-authentication. The example below shows
// email and password credentials but there are multiple possible providers,
// such as GoogleAuthProvider or FacebookAuthProvider.
AuthCredential credential = EmailAuthProvider
        .getCredential("user@example.com", "password1234");

// Prompt the user to re-provide their sign-in credentials
user.reauthenticate(credential)
        .addOnCompleteListener(new OnCompleteListener<Void>() {
            @Override
            public void onComplete(@NonNull Task<Void> task) {
                Log.d(TAG, "User re-authenticated.");
            }
        });

उपयोगकर्ता खाते इंपोर्ट करें

आप फ़ाइल से उपयोगकर्ता खातों को अपने Firebase प्रोजेक्ट में इंपोर्ट कर सकते हैं. इसके लिए Firebase सीएलआई की auth:import कमांड. उदाहरण के लिए:

firebase auth:import users.json --hash-algo=scrypt --rounds=8 --mem-cost=14