Crates.io | aliyun-openapi |
lib.rs | aliyun-openapi |
version | 0.3.0 |
source | src |
created_at | 2020-11-26 05:27:41.960196 |
updated_at | 2021-01-16 04:57:58.602361 |
description | Alibaba Cloud OpenAPI SDK for Rust |
homepage | https://github.com/linux-china/aliyun-openapi-rust-sdk |
repository | https://github.com/linux-china/aliyun-openapi-rust-sdk |
max_upload_size | |
id | 316541 |
size | 65,083 |
The Alibaba Cloud SDK for Rust allows you to access Alibaba Cloud services such as Elastic Compute Service (ECS), Object Storage Service(OSS), Direct Mail (DM) etc.
You can access Alibaba Cloud services without the need to handle API related tasks, such as signing and constructing your requests.
Please install aliyun command line from https://github.com/aliyun/aliyun-cli first, then config the credential info with following command:
$ aliyun configure
use aliyun_openapi::prelude::*;
use std::str::from_utf8;
use bytes::{Bytes, Buf};
#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
let endpoint = "oss-cn-hangzhou.aliyuncs.com";
let ref http_client = reqwest::Client::new();
let oss = OSS { endpoint, http_client };
let bytes: Bytes = oss.get_object("eren-assets", "hello.txt").await?;
print!("object: {}", from_utf8(bytes.bytes()).unwrap());
Ok(())
}