|
|
package main
import ( "context" "net/url" "os" "strings"
"net/http"
"github.com/tencentyun/cos-go-sdk-v5" "github.com/tencentyun/cos-go-sdk-v5/debug" )
func main() { u, _ := url.Parse("https://test-1253846586.cos.ap-guangzhou.myqcloud.com") b := &cos.BaseURL{BucketURL: u} c := cos.NewClient(b, &http.Client{ Transport: &cos.AuthorizationTransport{ SecretID: os.Getenv("COS_SECRETID"), SecretKey: os.Getenv("COS_SECRETKEY"), Transport: &debug.DebugRequestTransport{ RequestHeader: true, RequestBody: true, ResponseHeader: true, ResponseBody: true, }, }, })
// Case1 normal put object
name := "test/objectPut.go" f := strings.NewReader("test")
_, err := c.Object.Put(context.Background(), name, f, nil) if err != nil { panic(err) }
// Case2 put object with the options
name = "test/put_option.go" f = strings.NewReader("test xxx") opt := &cos.ObjectPutOptions{ ObjectPutHeaderOptions: &cos.ObjectPutHeaderOptions{ ContentType: "text/html", }, ACLHeaderOptions: &cos.ACLHeaderOptions{ //XCosACL: "public-read",
XCosACL: "private", }, } _, err = c.Object.Put(context.Background(), name, f, opt) if err != nil { panic(err) }
// Case3 put object by local file
_, err = c.Object.PutFromFile(context.Background(), name, "./test10M", nil) if err != nil { panic(err) }
}
|