I wanted to serve static files stored in google cloud storage for app hosted in app engine. In HTML file, I used
<link href="https://storage.cloud.google.com/my_bucket/custom.css" rel="stylesheet">
It works properly, if the google account of logged in user has permission to access bucket. Since app can be accessed by anyone who will not have access to my bucket and in such case, static files will not be served.
Is it possible to make static files in bucket publicly available? I made static file(custom.css) as 'shared publicly'(ACL set to 'public-read') but still other users can't access it.