我正在使用Firebase匿名登录对用户进行身份验证。
登录后,当我们重新启动应用时,firebase auth对象每次都会为当前用户提供null对象。
但是我的代码在Android上工作正常,但在IOS上工作
我正在使用Firebase C ++ API进行Firebase身份验证。
firebase::auth::Auth* auth = firebase::auth::Auth::GetAuth(FireBaseHelper::getFireBaseHlprInstance()->getFirebaseAppOpbject());
auth::User *currentUser = auth->current_user();
// here currentUser is always null
// this code working fine in Android, but not worked in IOS