#sdk #iop #platform #open #tokio #request-parameters #ali-express

bin+lib iop-sdk-rust

非官方 Rust AliExpress 开放平台 SDK (iop-sdk-rust-20231210)

4 个版本

0.0.4 2024年3月12日
0.0.3 2023年12月11日
0.0.2 2023年12月10日
0.0.1 2023年12月10日

#790 in 密码学

MIT 许可证

35KB
628

iop-sdk-rust

非官方 Rust AliExpress 开放平台 SDK (iop-sdk-rust)

示例

use std::collections::HashMap;
use dotenv_vault::dotenv;
use iop::{Iop, ApiName, RequestParameters, Result};


#[tokio::main]
async fn main() -> Result<()> {

    dotenv().expect(".env file not found");

    let app_key = std::env::var("APPKEY").expect("APPKEY variable dosn't exist");
    let secret = std::env::var("SECRET").expect("SECRET variable dosn't exist");

    let top_api = Iop::new(app_key.as_str(), secret.as_str());

    let url = "https://www.aliexpress.com/w/wholesale-삼성노트북.html"; // Aliexpress product url

    let mut request_parameters: RequestParameters = HashMap::new();
    request_parameters.insert("app_signature".to_string(), "asdasdasdsa".to_string());
    request_parameters.insert("promotion_link_type".to_string(), "0".to_string());
    request_parameters.insert("source_values".to_string(), url.to_string());
    request_parameters.insert("tracking_id".to_string(), "yourtracking_id".to_string());
    
    let response = top_api.request(ApiName::GenerateAffiliateLinks, Some(request_parameters)).await?;

    if response.status().is_success(){
        println!("is_success"); 
        println!("{:#?}", response.text().await?);  
    }

    Ok(())
}

待办事项

  • 添加更多 Apis
  • 添加更多 HTTP 方法
  • 添加 sha256 签名方法

依赖关系

~7–22MB
~297K SLoC