Android पर पुष्टि करने वाली एक से ज़्यादा कंपनियों को किसी खाते से लिंक करना
संग्रह की मदद से व्यवस्थित रहें
अपनी प्राथमिकताओं के आधार पर, कॉन्टेंट को सेव करें और कैटगरी में बांटें.
उपयोगकर्ताओं को पुष्टि करने वाले कई प्रोवाइडर का इस्तेमाल करके, आपके ऐप्लिकेशन में साइन इन करने की अनुमति दी जा सकती है. इसके लिए, पुष्टि करने वाले प्रोवाइडर के क्रेडेंशियल को किसी मौजूदा उपयोगकर्ता खाते से लिंक करें.
उपयोगकर्ताओं की पहचान एक ही Firebase यूज़र आईडी से की जाती है. भले ही, उन्होंने साइन इन करने के लिए किसी भी पुष्टि करने वाली कंपनी का इस्तेमाल किया हो. उदाहरण के लिए, पासवर्ड से साइन इन करने वाला कोई व्यक्ति, Google खाता लिंक कर सकता है. इसके बाद, वह इनमें से किसी भी तरीके से साइन इन कर सकता है. इसके अलावा, पहचान छिपाकर ऐप्लिकेशन का इस्तेमाल करने वाला कोई व्यक्ति, Facebook खाते को लिंक कर सकता है. इसके बाद, वह Facebook से साइन इन करके ऐप्लिकेशन का इस्तेमाल जारी रख सकता है.
शुरू करने से पहले
अपने ऐप्लिकेशन में, पुष्टि करने की सेवा देने वाली दो या उससे ज़्यादा कंपनियों के लिए सहायता जोड़ें. इसमें गुमनाम तरीके से पुष्टि करने की सुविधा भी शामिल हो सकती है.
उपयोगकर्ता खाते से पुष्टि करने वाली सेवा देने वाली कंपनी के क्रेडेंशियल लिंक करना
पुष्टि करने की सेवा देने वाली कंपनी के क्रेडेंशियल को किसी मौजूदा उपयोगकर्ता खाते से लिंक करने के लिए:
उपयोगकर्ता को किसी भी पुष्टि करने वाले प्रोवाइडर या तरीके का इस्तेमाल करके साइन इन करें.
पुष्टि करने की नई सेवा देने वाली कंपनी के लिए, साइन-इन करने की प्रोसेस पूरी करें. हालांकि, FirebaseAuth.signInWith तरीकों में से किसी एक को कॉल करने से पहले ही यह प्रोसेस पूरी हो जानी चाहिए. उदाहरण के लिए, उपयोगकर्ता का Google आईडी टोकन, Facebook ऐक्सेस टोकन या ईमेल और पासवर्ड पाएं.
पुष्टि करने वाली नई सेवा के लिए AuthCredential पाएं:
अगर क्रेडेंशियल पहले से ही किसी दूसरे उपयोगकर्ता खाते से लिंक हैं, तो linkWithCredential को कॉल नहीं किया जा सकेगा. इस स्थिति में, आपको अपने ऐप्लिकेशन के हिसाब से खातों और उनसे जुड़े डेटा को मर्ज करना होगा:
Kotlin
valprevUser=auth.currentUserauth.signInWithCredential(credential).addOnSuccessListener{result->
valcurrentUser=result.user// Merge prevUser and currentUser accounts and data// ...}.addOnFailureListener{// ...}
FirebaseUserprevUser=FirebaseAuth.getInstance().getCurrentUser();mAuth.signInWithCredential(credential).addOnCompleteListener(newOnCompleteListener<AuthResult>(){@OverridepublicvoidonComplete(@NonNullTask<AuthResult>task){FirebaseUsercurrentUser=task.getResult().getUser();// Merge prevUser and currentUser accounts and data// ...}});
linkWithCredential को कॉल करने पर, उपयोगकर्ता अब लिंक किए गए किसी भी पुष्टि करने वाले सेवा देने वाले व्यक्ति का इस्तेमाल करके साइन इन कर सकता है. साथ ही, उसी Firebase डेटा को ऐक्सेस कर सकता है.
किसी उपयोगकर्ता खाते से पुष्टि करने की सेवा देने वाली कंपनी को अनलिंक करना
किसी खाते से पुष्टि करने वाली सेवा देने वाली कंपनी को अलग किया जा सकता है, ताकि उपयोगकर्ता उस सेवा का इस्तेमाल करके साइन इन न कर पाए.
किसी उपयोगकर्ता खाते से पुष्टि करने की सेवा देने वाली कंपनी को अनलिंक करने के लिए, unlink तरीके में सेवा देने वाली कंपनी का आईडी पास करें. getProviderData को कॉल करके, किसी उपयोगकर्ता से लिंक किए गए पुष्टि करने की सेवा देने वाली कंपनियों के आईडी पाए जा सकते हैं.
Kotlin
Firebase.auth.currentUser!!.unlink(providerId).addOnCompleteListener(this){task->
if(task.isSuccessful){// Auth provider unlinked from account// ...}}
[null,null,["आखिरी बार 2025-08-31 (UTC) को अपडेट किया गया."],[],[],null,["| **Important** : There is a [known issue](https://github.com/firebase/firebase-js-sdk/issues/7675) that prevents `linkWithCredentials()` from working correctly in some projects. See the issue report for a workaround and the status of a fix.\n\nYou can allow users to sign in to your app using multiple authentication\nproviders by linking auth provider credentials to an existing user account.\nUsers are identifiable by the same Firebase user ID regardless of the\nauthentication provider they used to sign in. For example, a user who signed in\nwith a password can link a Google account and sign in with either method in the\nfuture. Or, an anonymous user can link a Facebook account and then, later, sign\nin with Facebook to continue using your app.\n\nBefore you begin\n\nAdd support for two or more authentication providers (possibly including\nanonymous authentication) to your app.\n\nLink auth provider credentials to a user account\n\nTo link auth provider credentials to an existing user account:\n\n1. Sign in the user using any authentication provider or method.\n2. Complete the sign-in flow for the new authentication provider up to, but not including, calling one of the [`FirebaseAuth.signInWith`](/docs/reference/android/com/google/firebase/auth/FirebaseAuth#public-method-summary) methods. For example, get the user's Google ID token, Facebook access token, or email and password.\n3. Get a `AuthCredential` for the new authentication provider:\n\n Google Sign-In \n\n Kotlin \n\n ```kotlin\n val credential = GoogleAuthProvider.getCredential(googleIdToken, null)https://github.com/firebase/snippets-android/blob/cc307b137a106d66a52fa6e9bee6f4f55dab9f76/auth/app/src/main/java/com/google/firebase/quickstart/auth/kotlin/MainActivity.kt#L394-L394\n ```\n\n Java \n\n ```java\n AuthCredential credential = GoogleAuthProvider.getCredential(googleIdToken, null);https://github.com/firebase/snippets-android/blob/cc307b137a106d66a52fa6e9bee6f4f55dab9f76/auth/app/src/main/java/com/google/firebase/quickstart/auth/MainActivity.java#L479-L479\n ```\n\n Facebook Login \n\n Kotlin \n\n ```kotlin\n val credential = FacebookAuthProvider.getCredential(token.token)https://github.com/firebase/snippets-android/blob/cc307b137a106d66a52fa6e9bee6f4f55dab9f76/auth/app/src/main/java/com/google/firebase/quickstart/auth/kotlin/MainActivity.kt#L401-L401\n ```\n\n Java \n\n ```java\n AuthCredential credential = FacebookAuthProvider.getCredential(token.getToken());https://github.com/firebase/snippets-android/blob/cc307b137a106d66a52fa6e9bee6f4f55dab9f76/auth/app/src/main/java/com/google/firebase/quickstart/auth/MainActivity.java#L487-L487\n ```\n\n Email-password sign-in \n\n Kotlin \n\n ```kotlin\n val credential = EmailAuthProvider.getCredential(email, password)https://github.com/firebase/snippets-android/blob/cc307b137a106d66a52fa6e9bee6f4f55dab9f76/auth/app/src/main/java/com/google/firebase/quickstart/auth/kotlin/MainActivity.kt#L409-L409\n ```\n\n Java \n\n ```java\n AuthCredential credential = EmailAuthProvider.getCredential(email, password);https://github.com/firebase/snippets-android/blob/cc307b137a106d66a52fa6e9bee6f4f55dab9f76/auth/app/src/main/java/com/google/firebase/quickstart/auth/MainActivity.java#L495-L495\n ```\n4. Pass the `AuthCredential` object to the signed-in user's\n `linkWithCredential` method:\n\n Kotlin \n\n ```kotlin\n auth.currentUser!!.linkWithCredential(credential)\n .addOnCompleteListener(this) { task -\u003e\n if (task.isSuccessful) {\n Log.d(TAG, \"linkWithCredential:success\")\n val user = task.result?.user\n updateUI(user)\n } else {\n Log.w(TAG, \"linkWithCredential:failure\", task.exception)\n Toast.makeText(\n baseContext,\n \"Authentication failed.\",\n Toast.LENGTH_SHORT,\n ).show()\n updateUI(null)\n }\n }https://github.com/firebase/snippets-android/blob/cc307b137a106d66a52fa6e9bee6f4f55dab9f76/auth/app/src/main/java/com/google/firebase/quickstart/auth/kotlin/AnonymousAuthActivity.kt#L66-L81\n ```\n\n Java \n\n ```java\n mAuth.getCurrentUser().linkWithCredential(credential)\n .addOnCompleteListener(this, new OnCompleteListener\u003cAuthResult\u003e() {\n @Override\n public void onComplete(@NonNull Task\u003cAuthResult\u003e task) {\n if (task.isSuccessful()) {\n Log.d(TAG, \"linkWithCredential:success\");\n FirebaseUser user = task.getResult().getUser();\n updateUI(user);\n } else {\n Log.w(TAG, \"linkWithCredential:failure\", task.getException());\n Toast.makeText(AnonymousAuthActivity.this, \"Authentication failed.\",\n Toast.LENGTH_SHORT).show();\n updateUI(null);\n }\n }\n });https://github.com/firebase/snippets-android/blob/cc307b137a106d66a52fa6e9bee6f4f55dab9f76/auth/app/src/main/java/com/google/firebase/quickstart/auth/AnonymousAuthActivity.java#L91-L106\n ```\n\n The call to `linkWithCredential` will fail if the credentials are\n already linked to another user account. In this situation, you must handle\n merging the accounts and associated data as appropriate for your app: \n\n Kotlin \n\n ```kotlin\n val prevUser = auth.currentUser\n auth.signInWithCredential(credential)\n .addOnSuccessListener { result -\u003e\n val currentUser = result.user\n // Merge prevUser and currentUser accounts and data\n // ...\n }\n .addOnFailureListener {\n // ...\n }https://github.com/firebase/snippets-android/blob/cc307b137a106d66a52fa6e9bee6f4f55dab9f76/auth/app/src/main/java/com/google/firebase/quickstart/auth/kotlin/MainActivity.kt#L250-L259\n ```\n\n Java \n\n ```java\n FirebaseUser prevUser = FirebaseAuth.getInstance().getCurrentUser();\n mAuth.signInWithCredential(credential)\n .addOnCompleteListener(new OnCompleteListener\u003cAuthResult\u003e() {\n @Override\n public void onComplete(@NonNull Task\u003cAuthResult\u003e task) {\n FirebaseUser currentUser = task.getResult().getUser();\n // Merge prevUser and currentUser accounts and data\n // ...\n }\n });https://github.com/firebase/snippets-android/blob/cc307b137a106d66a52fa6e9bee6f4f55dab9f76/auth/app/src/main/java/com/google/firebase/quickstart/auth/MainActivity.java#L303-L312\n ```\n\nIf the call to `linkWithCredential` succeeds, the user can now sign in using\nany linked authentication provider and access the same Firebase data.\n\nUnlink an auth provider from a user account\n\nYou can unlink an auth provider from an account, so that the user can no\nlonger sign in with that provider.\n\nTo unlink an auth provider from a user account, pass the provider ID to the\n`unlink` method. You can get the provider IDs of the auth providers\nlinked to a user by calling [`getProviderData`](/docs/reference/android/com/google/firebase/auth/FirebaseUser#getProviderData()). \n\nKotlin \n\n```kotlin\nFirebase.auth.currentUser!!.unlink(providerId)\n .addOnCompleteListener(this) { task -\u003e\n if (task.isSuccessful) {\n // Auth provider unlinked from account\n // ...\n }\n }https://github.com/firebase/snippets-android/blob/cc307b137a106d66a52fa6e9bee6f4f55dab9f76/auth/app/src/main/java/com/google/firebase/quickstart/auth/kotlin/MainActivity.kt#L265-L271\n```\n\nJava \n\n```java\nmAuth.getCurrentUser().unlink(providerId)\n .addOnCompleteListener(this, new OnCompleteListener\u003cAuthResult\u003e() {\n @Override\n public void onComplete(@NonNull Task\u003cAuthResult\u003e task) {\n if (task.isSuccessful()) {\n // Auth provider unlinked from account\n // ...\n }\n }\n });https://github.com/firebase/snippets-android/blob/cc307b137a106d66a52fa6e9bee6f4f55dab9f76/auth/app/src/main/java/com/google/firebase/quickstart/auth/MainActivity.java#L321-L330\n```\n\nTroubleshooting\n\nIf you encounter errors when trying to link multiple accounts, see the\n[documentation on\nverified email addresses](https://firebase.google.com/docs/auth/users#verified_email_addresses)."]]