tencent_cos 1.0.8 copy "tencent_cos: ^1.0.8" to clipboard
tencent_cos: ^1.0.8 copied to clipboard

flutter cos插件

Getting started #

添加依赖 #

dependencies:
  tencent_cos: ^1.0.7

flutter 版本的插件腾讯cos插件,不依赖原生插件.参考:https://cloud.tencent.com/document/product/436/7749 如果可以麻烦右上角给点个like吧

使用方法 #

支持putObject deleteObject listObject三方方法,具体参考cos文档

//如果后台采用临时秘钥这里需要传入值,不然403错误,如果永久秘钥写在客户端,token可以不传入
String token = "";
//本地的file
String localPath = "";
//cos路径
String cosPath = "abc/123.png";
await COSClient(COSConfig(
credentials["secretId"],
credentials["secretKey"],
credentials["bucketName"],
credentials["region"],
)).putObject(cosPath, localPath, token: token);

Additional information #

具体参考:https://cloud.tencent.com/developer/article/1878729

11
likes
95
pub points
82%
popularity

Publisher

unverified uploader

flutter cos插件

Repository (GitHub)
View/report issues

Documentation

API reference

License

Apache-2.0 (LICENSE)

Dependencies

convert, crypto, flutter, xml

More

Packages that depend on tencent_cos