I have a Flex/Java application on Google App Engine and all I want is to load large images from Google Cloud Storage using URLRequest in Flex. I'm sure this is simple but I can't get it to work. I will manually upload the images using the Google APIs Console so I don't need to write anything from the App. The images can not be public.
I'm not 100% sure how to access the file so this may be the problem. I tried these:
- "/gs/mybucket/myimage.jpg" : not found
- "/mybucket/myimage.jpg" : not found
- "http://commondatastorage.googleapis.com/mybucket/myimage.jpg" : denied
I added [email protected] in the Team tab in Google APIs Console with Can View permission and I used GSUtil to get and set ACLs on both mybucket and myimage.jpg to add a READ permission for [email protected] but that didn't help.
What am I doing wrong?