The library was announced recently, which is much simpler to use than the old google apis client http://googlecloudplatform.blogspot.jp/2014/09/gcloud-node-google-cloud-platform-client-library-for-nodejs.html
Asked
Active
Viewed 375 times
1 Answers
3
You can set them with the ACL meta data as follows:
bucket.createWriteStream(filename, {
'acl': [
{
"entity": "allUsers",
"role": "READER"
}
]
});
This will set a object to public.

CJ Behne
- 48
- 2