英文:
is there any firebase storage rule from console that prevent download and print pdf document?
问题
我想防止任何用户通过我的Firebase文档URL下载/打印我的文档,比如PDF,只能查看它。例如,我想要链接我的PDF文件以便人们可以查看它,但不能分享或下载它,我该怎么做?
英文:
I want to prevent any user with my Firebase document URL from downloading/printing my document such as pdf but only to view it. For example, I want to link my PDF file so people can view it, but not share it, or download it, how do I do that?
答案1
得分: 2
你可以通过 Firebase 的安全规则来控制谁能访问数据。但一旦用户下载了数据,Firebase 就无法控制他们对数据可以做什么。
英文:
You can control who can access the data through Firebase security rules. But once the user can download the data, Firebase has no way to control what they can do with that data.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论