Sử dụng bộ sưu tập để sắp xếp ngăn nắp các trang
Lưu và phân loại nội dung dựa trên lựa chọn ưu tiên của bạn.
Bạn có thể dùng Firebase Authentication để tạo và sử dụng tài khoản ẩn danh tạm thời
để xác thực với Firebase. Những tài khoản ẩn danh tạm thời này có thể được dùng để
cho phép người dùng chưa đăng ký ứng dụng của bạn làm việc với dữ liệu được bảo vệ
theo các quy tắc bảo mật. Nếu một người dùng ẩn danh quyết định đăng ký ứng dụng của bạn, bạn có thể
liên kết thông tin đăng nhập của họ với
tài khoản để họ có thể tiếp tục làm việc với dữ liệu được bảo vệ của mình trong
các phiên trong tương lai.
Trên trang Phương thức đăng nhập, hãy bật tuỳ chọn Ẩn danh
đăng nhập.
Không bắt buộc: Nếu bạn đã nâng cấp dự án lên
Firebase Authentication with Identity Platform, bạn có thể bật tính năng tự động dọn dẹp. Thời gian
bạn bật chế độ cài đặt này, thì các tài khoản ẩn danh đã tồn tại hơn 30 ngày sẽ tự động
đã bị xoá. Trong các dự án đã bật tính năng tự động dọn dẹp, xác thực ẩn danh sẽ không
được tính vào hạn mức sử dụng hoặc hạn mức thanh toán. Xem
Tự động dọn dẹp.
Xác thực bằng Firebase dưới dạng ẩn danh
Khi người dùng đã đăng xuất sử dụng một tính năng của ứng dụng cần phải xác thực bằng
Firebase, hãy đăng nhập ẩn danh người dùng bằng cách hoàn tất các bước sau:
Lớp Auth là cổng vào cho tất cả lệnh gọi API.
Thêm tệp tiêu đề Ứng dụng và Xác thực:
#include"firebase/app.h"#include"firebase/auth.h"
Trong mã khởi chạy của bạn, hãy tạo một
Lớp firebase::App.
Nếu chương trình của bạn có vòng lặp cập nhật chạy thường xuyên (chẳng hạn như ở mức 30 hoặc 60
thời gian mỗi giây), bạn có thể kiểm tra kết quả một lần mỗi lần cập nhật bằng
Auth::SignInAnonymouslyLastResult:
firebase::Future<firebase::auth::AuthResult>result=auth->SignInAnonymouslyLastResult();if(result.status()==firebase::kFutureStatusComplete){if(result.error()==firebase::auth::kAuthErrorNone){firebase::auth::AuthResultauth_result=*result.result();printf("Sign in succeeded for `%s`\n",auth_result.user.display_name().c_str());}else{printf("Sign in failed with error '%s'\n",result.error_message());}}
Chuyển đổi tài khoản ẩn danh thành tài khoản vĩnh viễn
Khi người dùng ẩn danh đăng ký ứng dụng của bạn, bạn có thể cho phép họ
tiếp tục công việc của họ với tài khoản mới—ví dụ: bạn có thể muốn
tạo các mặt hàng mà người dùng đã thêm vào giỏ hàng trước khi đăng ký
có sẵn trong giỏ hàng trong tài khoản mới của họ. Để làm như vậy, vui lòng hoàn thành các bước sau
các bước:
Khi người dùng đăng ký, hãy hoàn tất quy trình đăng nhập cho
nhà cung cấp dịch vụ xác thực tối đa, nhưng không bao gồm, gọi một trong
Auth::SignInWith phương thức. Ví dụ: lấy mã thông báo mã nhận dạng trên Google của người dùng,
Mã truy cập Facebook hoặc địa chỉ email và mật khẩu.
Nhận auth::Credential cho nhà cung cấp dịch vụ xác thực mới:
Truyền đối tượng auth::Credential đến tài khoản của người dùng đăng nhập
Phương thức LinkWithCredential:
// Link the new credential to the currently active user.firebase::auth::Usercurrent_user=auth->current_user();firebase::Future<firebase::auth::AuthResult>result=current_user.LinkWithCredential(credential);
Nếu lệnh gọi đến LinkWithCredential thành công, tài khoản mới của người dùng có thể
truy cập vào dữ liệu Firebase của tài khoản ẩn danh đó.
Tự động dọn dẹp
Nếu đã nâng cấp dự án lên Firebase Authentication with Identity Platform, bạn có thể
bật tính năng tự động dọn dẹp trong bảng điều khiển Firebase. Khi bật tính năng này, bạn cho phép
Firebase để tự động xoá các tài khoản ẩn danh đã tồn tại hơn 30 ngày. Trong các dự án có chế độ tự động
đã bật tính năng dọn dẹp, xác thực ẩn danh sẽ không bị tính vào giới hạn sử dụng hoặc hạn mức thanh toán.
Mọi tài khoản ẩn danh được tạo sau khi bật tính năng tự động dọn dẹp có thể tự động được
bị xoá bất cứ lúc nào sau 30 ngày sau khi tạo.
Các tài khoản ẩn danh hiện có sẽ đủ điều kiện để tự động bị xoá sau 30 ngày kể từ ngày
bật chế độ tự động dọn dẹp.
Nếu bạn tắt tính năng tự động dọn dẹp, mọi tài khoản ẩn danh được lập lịch bị xoá sẽ vẫn còn
bị lập lịch để xoá.
Nếu bạn "nâng cấp" một tài khoản ẩn danh bằng cách liên kết tài khoản đó với bất kỳ phương thức đăng nhập nào, tài khoản đó sẽ
không bị xoá tự động.
Giờ đây, người dùng có thể xác thực bằng Firebase nên bạn có thể kiểm soát quyền truy cập của họ vào
trong cơ sở dữ liệu Firebase bằng cách sử dụng
Quy tắc Firebase.
[null,null,["Cập nhật lần gần đây nhất: 2025-08-16 UTC."],[],[],null,["You can use Firebase Authentication to create and use temporary anonymous accounts\nto authenticate with Firebase. These temporary anonymous accounts can be used to\nallow users who haven't yet signed up to your app to work with data protected\nby security rules. If an anonymous user decides to sign up to your app, you can\n[link their sign-in credentials to the anonymous\naccount](/docs/auth/cpp/account-linking) so that they can continue to work with their protected data in\nfuture sessions.\n\nBefore you begin\n\n1. [Add Firebase to your C++\n project](/docs/cpp/setup#note_select_platform).\n2. If you haven't yet connected your app to your Firebase project, do so from the [Firebase console](//console.firebase.google.com/).\n3. Enable anonymous auth:\n 1. In the [Firebase console](//console.firebase.google.com/), open the **Auth** section.\n 2. On the **Sign-in Methods** page, enable the **Anonymous** sign-in method.\n 3. **Optional** : If you've upgraded your project to [Firebase Authentication with Identity Platform](/auth#identity-platform), you can enable automatic clean-up. When you enable this setting, anonymous accounts older than 30 days will be automatically deleted. In projects with automatic clean-up enabled, anonymous authentication will no longer count toward usage limits or billing quotas. See [Automatic clean-up](#auto-cleanup).\n\nAuthenticate with Firebase anonymously\n\nWhen a signed-out user uses an app feature that requires authentication with\nFirebase, sign in the user anonymously by completing the following steps:\nThe `Auth` class is the gateway for all API calls.\n\n1. Add the Auth and App header files: \n\n ```c++\n #include \"firebase/app.h\"\n #include \"firebase/auth.h\"\n ```\n2. In your initialization code, create a [`firebase::App`](/docs/reference/cpp/class/firebase/app) class. \n\n ```c++\n #if defined(__ANDROID__)\n firebase::App* app =\n firebase::App::Create(firebase::AppOptions(), my_jni_env, my_activity);\n #else\n firebase::App* app = firebase::App::Create(firebase::AppOptions());\n #endif // defined(__ANDROID__)\n ```\n3. Acquire the `firebase::auth::Auth` class for your `firebase::App`. There is a one-to-one mapping between `App` and `Auth`. \n\n ```c++\n firebase::auth::Auth* auth = firebase::auth::Auth::GetAuth(app);\n ```\n\n- Call `Auth::SignInAnonymously`. \n\n ```c++\n firebase::Future\u003cfirebase::auth::AuthResult\u003e result =\n auth-\u003eSignInAnonymously();\n ```\n- If your program has an update loop that runs regularly (say at 30 or 60 times per second), you can check the results once per update with `Auth::SignInAnonymouslyLastResult`: \n\n ```c++\n firebase::Future\u003cfirebase::auth::AuthResult\u003e result =\n auth-\u003eSignInAnonymouslyLastResult();\n if (result.status() == firebase::kFutureStatusComplete) {\n if (result.error() == firebase::auth::kAuthErrorNone) {\n firebase::auth::AuthResult auth_result = *result.result();\n printf(\"Sign in succeeded for `%s`\\n\",\n auth_result.user.display_name().c_str());\n } else {\n printf(\"Sign in failed with error '%s'\\n\", result.error_message());\n }\n }\n ```\n Or, if your program is event driven, you may prefer to [register a callback on the\n Future](#register_callback_on_future).\n| To protect your project from abuse, Firebase limits the number of new email/password and anonymous sign-ups that your application can have from the same IP address in a short period of time. You can request and schedule temporary changes to this quota from the [Firebase console](//console.firebase.google.com/project/_/authentication/providers).\n\nConvert an anonymous account to a permanent account\n- When an anonymous user signs up to your app, you might want to allow them to continue their work with their new account---for example, you might want to make the items the user added to their shopping cart before they signed up available in their new account's shopping cart. To do so, complete the following steps:\n 1. When the user signs up, complete the sign-in flow for the user's authentication provider up to, but not including, calling one of the `Auth::SignInWith` methods. For example, get the user's Google ID token, Facebook access token, or email address and password.\n 2. Get an `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(google_id_token,\n nullptr);\n ```\n **Facebook Login** \n\n ```c++\n firebase::auth::Credential credential =\n firebase::auth::FacebookAuthProvider::GetCredential(access_token);\n ```\n **Email-password sign-in** \n\n ```c++\n firebase::auth::Credential credential =\n firebase::auth::EmailAuthProvider::GetCredential(email, password);\n ```\n 3. Pass the `auth::Credential` object to the sign-in user's\n `LinkWithCredential` method:\n\n ```c++\n // Link the new credential to the currently active user.\n firebase::auth::User current_user = auth-\u003ecurrent_user();\n firebase::Future\u003cfirebase::auth::AuthResult\u003e result =\n current_user.LinkWithCredential(credential);\n ```\n- If the call to `LinkWithCredential` succeeds, the user's new account can access the anonymous account's Firebase data.\n| This technique can also be used to [link any two accounts](/docs/auth/cpp/account-linking).\n\nAutomatic clean-up\n- If you've upgraded your project to [Firebase Authentication with Identity Platform](/docs/auth#identity-platform), you can enable automatic clean-up in the Firebase console. When you enable this feature you allow Firebase to automatically delete anonymous accounts older than 30 days. In projects with automatic clean-up enabled, anonymous authentication will not count toward usage limits or billing quotas.\n - Any anonymous accounts created after enabling automatic clean-up might be automatically deleted any time after 30 days post-creation.\n - Existing anonymous accounts will be eligible for automatic deletion 30 days after enabling automatic clean-up.\n - If you turn automatic clean-up off, any anonymous accounts scheduled to be deleted will remain scheduled to be deleted.\n - If you \"upgrade\" an anonymous account by linking it to any sign-in method, the account will not get automatically deleted.\n- If you want to see how many users will be affected before you enable this feature, and you've upgraded your project to [Firebase Authentication with Identity Platform](/docs/auth#identity-platform), you can filter by `is_anon` in [Cloud\n Logging](https://cloud.google.com/logging/docs).\n\nNext steps\n- Now that users can authenticate with Firebase, you can control their access to data in your Firebase database using [Firebase rules](/docs/database/security#section-authorization)."]]