Restrict firebase access to a single android app without authentication [duplicate]
问题 This question already has answers here : How to make firebase storage only available to users of the app (2 answers) Closed 3 months ago . I need to access read/write images from firebase storage. There is no authentication facility. How can I restrict the data management through app only. Existing rules to provide public access is rules_version = '2'; service firebase.storage { match /b/{bucket}/o { match /{allPaths=**} { allow read, write; } } } 回答1: There is no way to limit access to the