我正在尝试使用Firebase存储规则(request.resource.crc32c
)中的https://firebase.google.com/docs/reference/security/storage/#properties_2
我的目标是制定类似的规则:
match /blobs/{hash}/{fileName} {
allow read;
allow write: if request.resource.crc32c == hash;
}
但是我每次尝试写操作都被拒绝权限。 Firebase文档未提供有关CRC32C哈希格式的任何信息:是hex,int,uint,base64还是其他?
这是编码为base64字符串的crc32c值的大端表示形式>