I have a google storage bucket with several folders containing images (png tile sets). The folders are set up identically, with all files shared publicly and read access given to all users.
I'm able to access the 2014 folder thru javascript in an app engine, both locally and in the cloud. However, when trying to access the 2015 folder i get errors like this on each file:
GET https://storage.googleapis.com/naip-skytruth-org/2014/9/142/193 403 ()
Access to both folders are identical with simple layering over a google map. this.map.overlayMapTypes.push(this.selectMap(this.getSelectedNaip()))
Since permissions are kept at the bucket level, not the folder level, I'm not sure what to do next. I can list both folders using gsutil, and of course can go to the files on the cloud console to see that they're all shared publicaly.
What possible difference can there be in folder permissions? I understand ACL is no longer used.
Thanks, Dan