Aliyun OpenAPI POP core SDK for Rust.
You must know your AK
(accessKeyId/accessKeySecret
), and the aliyun product's endpoint
and apiVersion
.
For example, The ECS OpenAPI, the API version is 2014-05-26
.
And the endpoint list can be found at here, the center endpoint is ecs.aliyuncs.com. Add http protocol http
or https
, should be https://ecs.aliyuncs.com/
.
Run the following Cargo command in your project directory:
shell
cargo add aliyun-openapi-core-rust-sdk
Or add the following line to your Cargo.toml:
toml
aliyun-openapi-core-rust-sdk = "1.1.0"
The RPC style client:
```rust use std::collections::HashMap; use std::env; use std::error::Error;
use aliyunopenapicorerustsdk::client::rpc::RPClient; use serde::{Deserialize, Serialize};
struct Region { regionid: String, regionendpoint: String, local_name: String, }
struct RegionList {
request_id: String,
regions: HashMap
async fn main() -> Result<(), Box
// call `DescribeRegions` with empty queries, return `RegionList`
let response = aliyun_openapi_client
.clone()
.version("2014-05-26")
.get("DescribeRegions")
.json::<RegionList>()
.await?;
println!("DescribeRegions response: {response:#?}");
// call `DescribeInstances` with queries, return `String`
let response = aliyun_openapi_client
.version("2014-05-26")
.get("DescribeInstances")
.query([("RegionId", "cn-hangzhou")])
.text()
.await?;
println!("DescribeInstances response: {response}");
Ok(())
} ```
The ROA style client:
```rust use std::collections::HashMap; use std::env; use std::error::Error;
use aliyunopenapicorerustsdk::client::roa::ROAClient; use serde::{Deserialize, Serialize}; use serde_json::json;
struct TranslateData { word_count: String, translated: String, }
struct Translate { request_id: String, data: TranslateData, code: String, }
async fn main() -> Result<(), Box
// create params.
let mut params = HashMap::new();
params.insert("SourceText", "你好");
params.insert("SourceLanguage", "zh");
params.insert("TargetLanguage", "en");
params.insert("FormatType", "text");
params.insert("Scene", "general");
// call `Translate` with json params, return `Translate`
let response = aliyun_openapi_client
.version("2018-04-08")
.post("/api/translate/web/general")
.header([("Content-Type".to_string(), "application/json".to_string())])?
.body(json!(params).to_string())?
.json::<Translate>()
.await?;
println!("Translate response: {response:#?}");
Ok(())
} ```
Export AK info to env, then run cargo run --example <NAME>
:
```sh
export ACCESSKEYID=
cargo run --example ecs
cargo run --example rds
cargo run --example slb
cargo run --example vpc
cargo run --example log_service ```
The MIT License