Last active
January 22, 2024 22:59
-
-
Save poindextrose/afa4d4bb5e93c4c3de77 to your computer and use it in GitHub Desktop.
Example on how to create a signed URL on Google Cloud Storage with Go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"fmt" | |
"time" | |
"google.golang.org/cloud/storage" | |
) | |
const ( | |
projectID = "myProject-1234" | |
) | |
func main() { | |
bucket := "mybucket" | |
filename := "myFilename" | |
method := "PUT" | |
expires := time.Now().Add(time.Second * 60) | |
url, err := storage.SignedURL(bucket, filename, &storage.SignedURLOptions{ | |
GoogleAccessID: "[email protected]", | |
PrivateKey: []byte("-----BEGIN PRIVATE KEY-----\nXXXXXXXX"), | |
Method: method, | |
Expires: expires, | |
}) | |
if err != nil { | |
fmt.Println("Error " + err.Error()) | |
} | |
fmt.Println("URL = " + url) | |
} |
once you get the signed URL, how can I use curl command to upload a file? Can someone please help with an example?
Indeed, it would look something like this:
curl -X PUT --progress-bar -H 'Content-Type: application/mxf' --upload-file 'path_to_file.txt' 'Signed URL'
where Content-Type: application/mxf
will vary based on the type of file you're uploading, and path_to_file.txt
and Signed URL
need to be replaced with your actual values.
Thanks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
how do we get an Unsigned URL? so dumb I can't find that