aliyun_oss_flutter 1.0.3
aliyun_oss_flutter: ^1.0.3 copied to clipboard
aliyun oss plugin for flutter. Use this plugin to upload files to aliyun oss.
aliyun_oss_flutter #
aliyun oss plugin for flutter. Use this plugin to upload files to aliyun oss.
Usage #
To use this plugin, add aliyun_oss_flutter as a dependency in your pubspec.yaml file.
OSSClient is a static class
Example #
import 'package:flutter/material.dart';
import 'package:aliyun_oss_flutter/aliyun_oss_flutter.dart';
void main() {
// 初始化OSSClient
OSSClient.init(
endpoint: 'oss-cn-hangzhou.aliyuncs.com',
bucket: 'xxxx',
credentials: () {
// Future Credentials
return Credentials.fromJson(response.data);
// Or Credentials Config
return Credentials(
accessKeyId: 'xxxx',
accessKeySecret: 'xxxx',
);
},
);
runApp(...);
}
Future<void> upload() async {
final object = await OSSClient().putObject(
object: OSSObject
bucket: xxx, // String?
endpoint: xxx, // String?
path: xxx, // String?
);
}