I have been trying to create a signedurl using gsutil of google cloud storage, I have been using python from my windows machine Till now what I have done is
- Created a service account from google's developer console
- Then from my python I have executed this command to configure service account "gsutil config -e"
- Then given my credential information as asked by the console
- Then I tried to create a signed url for one of my object using following command
- python gsutil signurl -d 10m -p notasecret p12file.p12 gs://{my bucket}/{my object}
- This gave me this output with error message
[email protected] does not have permissions on gs://{my bucket}/{my object} using this link will likely result in a 403 error until at least READ permissions are granted
I have given read permission to all users on object
Please, Help me out of this, I have been stuck on this for 2 days...
gsutil signurl key.p12 gs://bucket/File%20name%20with%20spaces.txt
– Brandon Yarbrough