Alibaba Cloud OpenAPI SDK for Rust

Github Actions Crate

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.

How to start?

Please install aliyun command line from https://github.com/aliyun/aliyun-cli first, then config the credential info with following command:

$ aliyun configure

OSS example

```rust use aliyunopenapi::prelude::*; use std::str::fromutf8; use bytes::{Bytes, Buf};

[tokio::main]

async fn main() -> Result<(), Box> { let endpoint = "oss-cn-hangzhou.aliyuncs.com"; let ref httpclient = reqwest::Client::new(); let oss = OSS { endpoint, httpclient }; let bytes: Bytes = oss.getobject("eren-assets", "hello.txt").await?; print!("object: {}", fromutf8(bytes.bytes()).unwrap()); Ok(()) } ```

References