0

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

Cedric Fung
  • 477
  • 1
  • 4
  • 12

1 Answers1

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