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.

29 lines
636 B

  1. /*
  2. Package cos 腾讯云对象存储服务 COS(Cloud Object Storage) Go SDK
  3. COS API Version
  4. 封装了 V5 版本的 XML API
  5. Usage
  6. 在项目的 example 目录下有各个 API 的使用示例
  7. Authentication
  8. 默认所有 API 都是匿名访问. 如果想添加认证信息的话,可以通过自定义一个 http.Client 来添加认证信息.
  9. 比如, 使用内置的 AuthorizationTransport 来为请求增加 Authorization Header 签名信息:
  10. client := cos.NewClient(b, &http.Client{
  11. Transport: &cos.AuthorizationTransport{
  12. SecretID: "COS_SECRETID",
  13. SecretKey: "COS_SECRETKEY",
  14. },
  15. })
  16. */
  17. package cos