-
-
Notifications
You must be signed in to change notification settings - Fork 26
/
get.go
50 lines (43 loc) · 952 Bytes
/
get.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
package main
import (
"context"
"fmt"
"os"
"net/http"
"github.com/mozillazg/go-cos"
"github.com/mozillazg/go-cos/debug"
)
func main() {
b, _ := cos.NewBaseURL(os.Getenv("COS_BUCKET_URL"))
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,
},
},
})
opt := &cos.BucketGetOptions{
Prefix: "test",
MaxKeys: 3,
}
v, resp, err := c.Bucket.Get(context.Background(), opt)
if err != nil {
panic(err)
}
resp.Body.Close()
for _, c := range v.Contents {
fmt.Printf("%s, %d\n", c.Key, c.Size)
}
// 测试特殊字符
opt.Prefix = "test/put_ + !'()* option"
_, resp, err = c.Bucket.Get(context.Background(), opt)
if err != nil {
panic(err)
}
resp.Body.Close()
}