You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I generated the pre-signed URL, I set an expiration time, but the link expiration time did not take effect, and the expiration time in the link was incorrect.
go version: 1.22
github.com/huaweicloud/huaweicloud-sdk-go-obs v3.24.9+incompatible
When I generated the pre-signed URL, I set an expiration time, but the link expiration time did not take effect, and the expiration time in the link was incorrect.
go version: 1.22
github.com/huaweicloud/huaweicloud-sdk-go-obs v3.24.9+incompatible
`func SignDownUrl(path string) {
client, err := NewHuaWeiObsClient()
if err != nil {
fmt.Println(err)
}
expires := 60
input := obs.CreateSignedUrlInput{
Bucket: "migrate-to-minio-test",
Key: path,
Method: obs.HttpMethodGet,
Expires: expires,
}
}
`
The generated link is like: http://migrate-to-minio-test.obs.cn-north-4.myhuaweicloud.com:80/hudi-release-0.12.0.tar.gz?AWSAccessKeyId=GR6MO2GUCFAVCI&Expires=1730200189&Signature=G6czdPuWyvFoVsHerIYkLNw4TkM%3D
The text was updated successfully, but these errors were encountered: