How to let service account on Google Cloud Platform to have access to the Firebase Storage?

704 Views Asked by At

I'm using the Vision Api Product Search in the Google CLoud Vision, so i want to access the images in the firebase Storage but now when i'm making request this error occurs "message": "Error opening file: gs://swaepone.appspot.com/bag.jpeg." so how to have read access to the firebase sotrage ?

2

There are 2 best solutions below

1
On BEST ANSWER

Assuming this is the service account calling ...check the bucket permissions on Cloud Storage.

PROJECT_ID.appspot.com is the the relevant GCS bucket, behind "Firebase Storage".

The security rules for Firebase Storage might only consider Firebase Auth users;
you'd have to add this service account with (at least) role "Storage Object Viewer".

2
On

When i made the bucket public to all users and add the role 'Storage Object Viewer' the error gone! but my question is, is it a bad way to make the bucket public and the users can now modify or delete any data ? or only can view them Image