--
You received this message because you are subscribed to the Google Groups "google-appengine-go" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-appengin...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--
To unsubscribe from this group and stop receiving emails from it, send an email to google-appengine-go+unsub...@googlegroups.com.
Start by getting this running: https://github.com/bensonk/gophercon-samples/blob/master/storage.go
Clone the repo, or download the file
Edit the file to include your project specific info
Client id
Client secret
Your project ID
A bucket name and object name of your choosing
run storage.go
Troubleshooting
If you’re having trouble with the client secrets, consider creating a new service account. Go to the developers console, APIs & Auth → Credentials → CREATE NEW CLIENT ID → Installed Application → other. And try those credentials.
Modify it to do something different
List the bucket
Save object to a new file, rather than stdout
To unsubscribe from this group and stop receiving emails from it, send an email to google-appengin...@googlegroups.com.
>>> email to google-appengine-go+unsub...@googlegroups.com.
>>> For more options, visit https://groups.google.com/d/optout.
>>
>>
> --
> You received this message because you are subscribed to the Google Groups
> "google-appengine-go" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to google-appengine-go+unsub...@googlegroups.com.
| # App Identity |
| appidentity_group = parser.add_argument_group('Application Identity') |
| appidentity_group.add_argument( |
| '--appidentity_email_address', |
| help='email address associated with a service account that has a ' |
| 'downloadable key. May be None for no local application identity.') |
| appidentity_group.add_argument( |
| '--appidentity_private_key_path', |
| help='path to private key file associated with service account ' |
| '(.pem format). Must be set if appidentity_email_address is set.') |