10 stable releases
1.2.4 | Aug 6, 2024 |
---|---|
1.2.3 |
|
1.2.2 | Apr 12, 2024 |
1.2.1 | Mar 29, 2024 |
1.0.1 | Jun 26, 2023 |
#1243 in Web programming
546 downloads per month
42KB
1K
SLoC
OSS-Rust-SDK
Fork from https://github.com/NoXF/oss-rust-sdk
It's an unofficial Rust port for https://github.com/aliyun/aliyun-oss-cpp-sdk, just implement core APIs of https://help.aliyun.com/document_detail/31977.html, everyone is welcome to submit a PR to implement which interface you need.
Getting Started
Put Object
async fn main() -> Result<(), OSSError> {
let buffer = "test async put object from buffer";
dotenvy::dotenv().unwrap();
let buffer = "test async put object from buffer";
let key_id = env::var("OSS_AK").unwrap();
let key_secret = env::var("OSS_SK").unwrap();
let endpoint = env::var("ENDPOINT").unwrap();
let bucket = env::var("BUCKET").unwrap();
let oss = OSS::new(
key_id,
key_secret,
endpoint,
bucket,
);
let mut headers = HashMap::new();
headers.insert("content-type", "text/plain");
let mut oss_sub_resource: HashMap<&str, Option<&str>> = HashMap::new();
oss_sub_resource.insert("acl", None);
oss_sub_resource.insert("response-content-type", Some("ContentType"));
oss_instance
.put_object(
buffer.as_bytes(),
"test/put_object.txt",
headers,
oss_sub_resource,
)
.await?;
Ok(())
}
- More example: examples
Note: I've removed the blocking code for the repository. If you need it, please move here: NoXF/oss-rust-sdk
License
- Apache License 2.0.
Dependencies
~10–24MB
~354K SLoC