广告平台(媒体使用)
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.

bucket_delete.go 366 B

1 kuukausi sitten
123456789101112131415161718
  1. package qiniu
  2. import (
  3. "github.com/qiniu/api.v7/v7/auth"
  4. "github.com/qiniu/api.v7/v7/storage"
  5. )
  6. func BucketDelete(bucketName string) error {
  7. mac := auth.New(AK, SK)
  8. cfg := storage.Config{
  9. // 是否使用https域名进行资源管理
  10. UseHTTPS: false,
  11. }
  12. bucketManager := storage.NewBucketManager(mac, &cfg)
  13. return bucketManager.DropBucket(bucketName)
  14. }