چندین ارائه دهنده Auth را به یک حساب در Android پیوند دهید
با مجموعهها، منظم بمانید
ذخیره و طبقهبندی محتوا براساس اولویتهای شما.
میتوانید به کاربران اجازه دهید با استفاده از چندین ارائهدهنده احراز هویت، با پیوند دادن اعتبار ارائهدهنده تأیید اعتبار به یک حساب کاربری موجود، به برنامه شما وارد شوند. کاربران با همان شناسه کاربر Firebase بدون توجه به ارائهدهنده احراز هویتی که برای ورود به سیستم استفاده کردهاند، قابل شناسایی هستند. برای مثال، کاربری که با رمز ورود وارد شده است، میتواند یک حساب Google را پیوند داده و در آینده با هر روشی وارد شود. یا، یک کاربر ناشناس می تواند یک حساب فیس بوک را پیوند دهد و سپس، برای ادامه استفاده از برنامه شما، با فیس بوک وارد شود.
قبل از شروع
پشتیبانی از دو یا چند ارائه دهنده احراز هویت (احتمالاً از جمله احراز هویت ناشناس) را به برنامه خود اضافه کنید.
اعتبار ارائه دهنده تأیید اعتبار را به یک حساب کاربری پیوند دهید
برای پیوند دادن اطلاعات کاربری ارائه دهنده اعتبار به یک حساب کاربری موجود:
با استفاده از هر ارائه دهنده یا روش احراز هویت، کاربر را وارد کنید.
جریان ورود به سیستم ارائهدهنده احراز هویت جدید را تا فراخوانی یکی از روشهای FirebaseAuth.signInWith ، بدون احراز هویت، تکمیل کنید. به عنوان مثال، رمز Google ID کاربر، رمز دسترسی فیس بوک یا ایمیل و رمز عبور را دریافت کنید.
یک 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// ...}}
تاریخ آخرین بهروزرسانی 2025-09-04 بهوقت ساعت هماهنگ جهانی.
[[["درک آسان","easyToUnderstand","thumb-up"],["مشکلم را برطرف کرد","solvedMyProblem","thumb-up"],["غیره","otherUp","thumb-up"]],[["اطلاعاتی که نیاز دارم وجود ندارد","missingTheInformationINeed","thumb-down"],["بیشازحد پیچیده/ مراحل بسیار زیاد","tooComplicatedTooManySteps","thumb-down"],["قدیمی","outOfDate","thumb-down"],["مشکل ترجمه","translationIssue","thumb-down"],["مشکل کد / نمونهها","samplesCodeIssue","thumb-down"],["غیره","otherDown","thumb-down"]],["تاریخ آخرین بهروزرسانی 2025-09-04 بهوقت ساعت هماهنگ جهانی."],[],[],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/b694d4dbd411d31be39655f47691c3e9f3529b03/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/b694d4dbd411d31be39655f47691c3e9f3529b03/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/b694d4dbd411d31be39655f47691c3e9f3529b03/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/b694d4dbd411d31be39655f47691c3e9f3529b03/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/b694d4dbd411d31be39655f47691c3e9f3529b03/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/b694d4dbd411d31be39655f47691c3e9f3529b03/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/b694d4dbd411d31be39655f47691c3e9f3529b03/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/b694d4dbd411d31be39655f47691c3e9f3529b03/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/b694d4dbd411d31be39655f47691c3e9f3529b03/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/b694d4dbd411d31be39655f47691c3e9f3529b03/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/b694d4dbd411d31be39655f47691c3e9f3529b03/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/b694d4dbd411d31be39655f47691c3e9f3529b03/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)."]]