在“ Firestore数据库安全规则”中,我使用自定义声明检查。他们工作正常。在我的应用程序中,我使用匿名身份验证。我按照指示进行操作,在我的第一个视图中,我有:
[[FIRAuth auth] signInAnonymouslyWithCompletion:^(FIRAuthDataResult * _Nullable authResult,NSError * _Nullable error) {
FIRUser *user = authResult.user;
NSLog(@"userId: %@", user.uid);}];
它起作用了,我得到了一个userId,我也可以在控制台上看到它。然后我使用了一个可调用的Cloud Functions,它使用其uid向用户添加了一个自定义声明。它行得通,因为在我的iOS完成中,我请求getIDToken:
[user getIDTokenResultWithCompletion:^(FIRAuthTokenResult *result,NSError *error) {
if (error != nil) {
}
else{
NSLog(@"claims: %@",result.claims);
//here I start my queries}];
在此日志中,我看到我的自定义声明已应用,uid是正确的。仅在此之后,我才开始查询Firestore数据库,但收到与安全规则有关的错误: Code = 7“缺少权限或权限不足。”
如果我停止应用程序,然后使用此查询重新启动它-它们将完美运行。因此,时间安排毫无疑问。在收到Cloud Functions的响应(已申请索赔)后,我什至将查询推迟了一分钟,但第一次(不重新启动应用程序)查询未通过安全规则。
是否可以在不重新启动应用程序的情况下在客户端中更新匿名用户?
更新 似乎需要通过将Pod更新到最新版本来解决。就我而言,我有5.0.2,并更新为5.0.5
答案 0 :(得分:-1)
这里是用于在firebaseDB中获取和设置数据的代码。
**view.h**
@属性(强原子)FIRDatabaseReference * refOnline;
**view.m**
NSUserDefaults* standardUserDefaults = [NSUserDefaults standardUserDefaults];
NSString *userID = [NSString stringWithFormat:@"%@",[standardUserDefaults valueForKey:@"UserID"]];
self.refOnline = [[FIRDatabase database] reference];
self.refOnline =[[self.refOnline child:userID] child:@"isOnline"];
//[self.refOnline setValue:@"0"];
[self.refOnline observeSingleEventOfType:FIRDataEventTypeValue withBlock:^(FIRDataSnapshot * _Nonnull snapshot) {
NSDictionary *dict = snapshot.value;
NSLog(@"%@",dict);
} withCancelBlock:^(NSError * _Nonnull error) {
NSLog(@"%@", error.localizedDescription);
}];
NSLog(@" %@",[self.refOnline child:@"isOnline"]);
**For Set Value**
[self.refOnline setValue:@"0"];
设置状态查看器观察器
FIRDatabaseReference *observRver = [[FIRDatabase database] reference];
observRver =[observRver child:[[mutDict valueForKey:@"UserID"] objectAtIndex:indexPath.row]];
[observRver observeEventType:FIRDataEventTypeValue withBlock:^(FIRDataSnapshot * _Nonnull snapshot) {
if (snapshot.value != [NSNull null]){
NSMutableArray *dict = snapshot.value;
NSString *isOnline = [dict valueForKey:@"isOnline"];
if([isOnline isEqualToString:@"1"]){
cell.img_on_offline.image = [UIImage imageNamed:@"green_on"];
cell.lbl_on_offline.text=@"Online";
} else {
cell.img_on_offline.image = [UIImage imageNamed:@"red_off"];
cell.lbl_on_offline.text=@"Offline";
}
} else {
FIRDatabaseReference *newRefrence = [[FIRDatabase database] reference];
newRefrence =[[newRefrence child:[[mutDict valueForKey:@"UserID"] objectAtIndex:indexPath.row]] child:@"isOnline"];
//[newRefrence setValue:@"1"];
NSLog(@" %@",[newRefrence child:@"isOnline"]);
}
} withCancelBlock:^(NSError * _Nonnull error) {
NSLog(@"%@", error.localizedDescription);
}];