You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
1.1 KiB
54 lines
1.1 KiB
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,
|
|
},
|
|
},
|
|
})
|
|
|
|
name := "test/objectPut.go"
|
|
f := strings.NewReader("test")
|
|
|
|
_, err := c.Object.Put(context.Background(), name, f, nil)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
|
|
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)
|
|
}
|
|
}
|