this is a little irritating lol, i can get a signed url via: bucket := "bnk-photos" filename := "mypic3.json" method := "PUT" expires := time.Now().Add(time.Minute * 10)
url, err := storage.SignedURL(bucket, filename, &storage.SignedURLOptions{ GoogleAccessID: cfg.Email, PrivateKey: cfg.PrivateKey, Method: method, Expires: expires, ContentType: "binary/octet-stream", }) but I just want an *unsigned* url? how? -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop receiving emails from it, send an email to golang-nuts+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/golang-nuts/f00bd659-dbed-4161-8b6c-456f41ccbb22n%40googlegroups.com.