Browse Source

update PresignedURL

master
jojoliang 4 years ago
parent
commit
22b4f727a4
  1. 2
      cos.go
  2. 2
      object.go

2
cos.go

@ -22,7 +22,7 @@ import (
const (
// Version current go sdk version
Version = "0.7.31"
Version = "0.7.32"
userAgent = "cos-go-sdk-v5/" + Version
contentTypeXML = "application/xml"
defaultServiceBaseURL = "http://service.cos.myqcloud.com"

2
object.go

@ -122,7 +122,7 @@ type PresignedURLOptions struct {
func (s *ObjectService) GetPresignedURL(ctx context.Context, httpMethod, name, ak, sk string, expired time.Duration, opt interface{}) (*url.URL, error) {
sendOpt := sendOptions{
baseURL: s.client.BaseURL.BucketURL,
uri: "/" + encodeURIComponent(name),
uri: "/" + encodeURIComponent(name, []byte{'/'}),
method: httpMethod,
optQuery: opt,
optHeader: opt,

Loading…
Cancel
Save