تنظيم صفحاتك في مجموعات
يمكنك حفظ المحتوى وتصنيفه حسب إعداداتك المفضّلة.
يمكنك السماح للمستخدمين بتسجيل الدخول إلى تطبيقك باستخدام موفّري مصادقة متعدّدين من خلال ربط بيانات اعتماد موفّر المصادقة بحساب مستخدم حالي.
يمكن التعرّف على المستخدمين من خلال معرّف مستخدم Firebase نفسه بغض النظر عن موفّر المصادقة الذي استخدموه لتسجيل الدخول. على سبيل المثال، يمكن للمستخدم الذي سجّل الدخول باستخدام كلمة مرور ربط حساب Google وتسجيل الدخول باستخدام أي من الطريقتين في المستقبل. أو يمكن لمستخدم مجهول ربط حساب على Facebook، ثم تسجيل الدخول باستخدام Facebook في وقت لاحق لمواصلة استخدام تطبيقك.
قبل البدء
أضِف إمكانية استخدام اثنين أو أكثر من مقدّمي خدمات المصادقة (بما في ذلك المصادقة بدون تحديد الهوية) إلى تطبيقك.
فئة FirebaseAuth هي البوابة لجميع طلبات البيانات من واجهة برمجة التطبيقات.
ويمكن الوصول إليها من خلال FirebaseAuth.DefaultInstance.
ربط بيانات اعتماد مقدّم خدمة المصادقة بحساب مستخدم
لربط بيانات اعتماد مقدّم خدمة المصادقة بحساب مستخدم حالي، اتّبِع الخطوات التالية:
سجِّل دخول المستخدم باستخدام أيّ موفّر أو طريقة مصادقة.
أكمِل خطوات تسجيل الدخول لمزوّد المصادقة الجديد حتى، ولكن بدون، استدعاء إحدى طرق Firebase.Auth.FirebaseAuth.SignInAndRetrieveDataWithCredentialAsync. على سبيل المثال، يمكنك الحصول على رمز تعريف Google للمستخدم أو رمز الدخول إلى Facebook أو عنوان البريد الإلكتروني وكلمة المرور.
احصل على Firebase.Auth.Credential لموفّر المصادقة الجديد:
مرِّر العنصر Firebase.Auth.Credential إلى الطريقة LinkWithCredentialAsync الخاصة بالمستخدم الذي سجّل الدخول:
auth.CurrentUser.LinkWithCredentialAsync(credential).ContinueWith(task=>{if(task.IsCanceled){Debug.LogError("LinkWithCredentialAsync was canceled.");return;}if(task.IsFaulted){Debug.LogError("LinkWithCredentialAsync encountered an error: "+task.Exception);return;}Firebase.Auth.AuthResultresult=task.Result;Debug.LogFormat("Credentials successfully linked to Firebase user: {0} ({1})",result.User.DisplayName,result.User.UserId);});
سيتعذّر إجراء طلب إلى LinkWithCredentialAsync إذا كانت بيانات الاعتماد مرتبطة مسبقًا بحساب مستخدم آخر. في هذه الحالة، عليك التعامل مع دمج الحسابات والبيانات المرتبطة بها على النحو المناسب لتطبيقك:
// Gather data for the currently signed in User.stringcurrentUserId=auth.CurrentUser.UserId;stringcurrentEmail=auth.CurrentUser.Email;stringcurrentDisplayName=auth.CurrentUser.DisplayName;System.UricurrentPhotoUrl=auth.CurrentUser.PhotoUrl;// Sign in with the new credentials.auth.SignInAndRetrieveDataWithCredentialAsync(credential).ContinueWith(task=>{if(task.IsCanceled){Debug.LogError("SignInAndRetrieveDataWithCredentialAsync was canceled.");return;}if(task.IsFaulted){Debug.LogError("SignInAndRetrieveDataWithCredentialAsync encountered an error: "+task.Exception);return;}Firebase.Auth.AuthResultresult=task.Result;Debug.LogFormat("User signed in successfully: {0} ({1})",result.User.DisplayName,result.User.UserId);// TODO: Merge app specific details using the newUser and values from the// previous user, saved above.});
في حال نجاح طلب LinkWithCredentialAsync، يمكن للمستخدم الآن تسجيل الدخول باستخدام أي مقدّم خدمة مصادقة مرتبط والوصول إلى بيانات Firebase نفسها.
إلغاء ربط مقدّم خدمة مصادقة بحساب مستخدم
يمكنك إلغاء ربط موفّر مصادقة بحساب، كي لا يتمكّن المستخدم من تسجيل الدخول باستخدام هذا الموفّر.
لإلغاء ربط مقدّم خدمة مصادقة بحساب مستخدم، مرِّر رقم تعريف مقدّم الخدمة إلى الطريقة UnlinkAsync. يمكنك الحصول على معرّفات موفّري المصادقة المرتبطين بمستخدم من خلال استدعاء ProviderData.
// Unlink the sign-in provider from the currently active user.// providerIdString is a string identifying a provider,// retrieved via FirebaseAuth.FetchProvidersForEmail().auth.CurrentUser.UnlinkAsync(providerIdString).ContinueWith(task=>{if(task.IsCanceled){Debug.LogError("UnlinkAsync was canceled.");return;}if(task.IsFaulted){Debug.LogError("UnlinkAsync encountered an error: "+task.Exception);return;}// The user has been unlinked from the provider.Firebase.Auth.AuthResultresult=task.Result;Debug.LogFormat("Credentials successfully unlinked from user: {0} ({1})",result.User.DisplayName,result.User.UserId);});
تاريخ التعديل الأخير: 2025-09-03 (حسب التوقيت العالمي المتفَّق عليه)
[[["يسهُل فهم المحتوى.","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-03 (حسب التوقيت العالمي المتفَّق عليه)"],[],[],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.\nThe `FirebaseAuth` class is the gateway for all API calls. It is accessible through [FirebaseAuth.DefaultInstance](/docs/reference/unity/class/firebase/auth/firebase-auth#defaultinstance). \n\n```c#\nFirebase.Auth.FirebaseAuth auth = Firebase.Auth.FirebaseAuth.DefaultInstance;\n```\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 [`Firebase.Auth.FirebaseAuth.SignInAndRetrieveDataWithCredentialAsync`](/docs/reference/unity/class/firebase/auth/firebase-auth#signinandretrievedatawithcredentialasync) methods. For example, get the user's Google ID token, Facebook access token, or email and password.\n3. Get a `Firebase.Auth.Credential` for the new authentication provider:\n\n **Google Sign-In** \n\n ```c#\n Firebase.Auth.Credential credential =\n Firebase.Auth.GoogleAuthProvider.GetCredential(googleIdToken, googleAccessToken);\n ```\n **Facebook Login** \n\n ```c#\n Firebase.Auth.Credential credential =\n Firebase.Auth.FacebookAuthProvider.GetCredential(accessToken);\n ```\n **Email-password sign-in** \n\n ```c#\n Firebase.Auth.Credential credential =\n Firebase.Auth.EmailAuthProvider.GetCredential(email, password);\n ```\n4. Pass the `Firebase.Auth.Credential` object to the signed-in user's\n `LinkWithCredentialAsync` method:\n\n ```c#\n auth.CurrentUser.LinkWithCredentialAsync(credential).ContinueWith(task =\u003e {\n if (task.IsCanceled) {\n Debug.LogError(\"LinkWithCredentialAsync was canceled.\");\n return;\n }\n if (task.IsFaulted) {\n Debug.LogError(\"LinkWithCredentialAsync encountered an error: \" + task.Exception);\n return;\n }\n\n Firebase.Auth.AuthResult result = task.Result;\n Debug.LogFormat(\"Credentials successfully linked to Firebase user: {0} ({1})\",\n result.User.DisplayName, result.User.UserId);\n });\n ```\n\n The call to `LinkWithCredentialAsync` 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 ```c#\n // Gather data for the currently signed in User.\n string currentUserId = auth.CurrentUser.UserId;\n string currentEmail = auth.CurrentUser.Email;\n string currentDisplayName = auth.CurrentUser.DisplayName;\n System.Uri currentPhotoUrl = auth.CurrentUser.PhotoUrl;\n\n // Sign in with the new credentials.\n auth.SignInAndRetrieveDataWithCredentialAsync(credential).ContinueWith(task =\u003e {\n if (task.IsCanceled) {\n Debug.LogError(\"SignInAndRetrieveDataWithCredentialAsync was canceled.\");\n return;\n }\n if (task.IsFaulted) {\n Debug.LogError(\"SignInAndRetrieveDataWithCredentialAsync encountered an error: \" + task.Exception);\n return;\n }\n\n Firebase.Auth.AuthResult result = task.Result;\n Debug.LogFormat(\"User signed in successfully: {0} ({1})\",\n result.User.DisplayName, result.User.UserId);\n\n // TODO: Merge app specific details using the newUser and values from the\n // previous user, saved above.\n });\n ```\n\nIf the call to `LinkWithCredentialAsync` 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`UnlinkAsync` method. You can get the provider IDs of the auth\nproviders linked to a user by calling\n[`ProviderData`](/docs/reference/unity/class/firebase/auth/firebase-user#providerdata). \n\n```c#\n// Unlink the sign-in provider from the currently active user.\n// providerIdString is a string identifying a provider,\n// retrieved via FirebaseAuth.FetchProvidersForEmail().\nauth.CurrentUser.UnlinkAsync(providerIdString).ContinueWith(task =\u003e {\n if (task.IsCanceled) {\n Debug.LogError(\"UnlinkAsync was canceled.\");\n return;\n }\n if (task.IsFaulted) {\n Debug.LogError(\"UnlinkAsync encountered an error: \" + task.Exception);\n return;\n }\n\n // The user has been unlinked from the provider.\n Firebase.Auth.AuthResult result = task.Result;\n Debug.LogFormat(\"Credentials successfully unlinked from user: {0} ({1})\",\n result.User.DisplayName, result.User.UserId);\n});\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)."]]