Closed vaind closed 1 year ago
Is there an equivalent of python's create_anonymous_client() to connect to a storage bucket that provides public access?
create_anonymous_client()
Never mind, I've been able to figure this out - one just needs to create a plain unauthenticated http.Client:
http.Client
final gstorage = Storage(Client(), ''); final bucket = gstorage.bucket('bucket-name');
Is there an equivalent of python's
create_anonymous_client()
to connect to a storage bucket that provides public access?