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) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks