15 releases

new 0.1.15 Nov 7, 2024
0.1.14 Sep 29, 2024
0.1.11 Aug 3, 2024
0.1.10 Jun 22, 2022
0.1.4 May 31, 2022

#642 in Web programming

Download history 119/week @ 2024-07-29 77/week @ 2024-08-05 29/week @ 2024-08-12 34/week @ 2024-08-19 114/week @ 2024-08-26 9/week @ 2024-09-02 444/week @ 2024-09-23 100/week @ 2024-09-30 10/week @ 2024-10-07 5/week @ 2024-10-14 6/week @ 2024-10-28 149/week @ 2024-11-04

161 downloads per month

MIT license

43KB
1K SLoC

alibaba-cloud-sdk-rust

crates.io Released API docs GPL3 licensed Downloads of Crates.io Lines of code Build Languages

阿里云短信rust sdk

Example

use alibaba_cloud_sdk_rust::services::dysmsapi;
use gostd::strings;

const AliyunSmsServerRegion: &str = "cn-hangzhou";
const AliyunSmsAccessKeyID: &str = "LTAI4FwqPxiAxxxxxx";
const AliyunSmsAccessKeySecret: &str = "xxxxx0FJqHTTLwDUuhxxxxx";
const AliyunSmsReportTempleateCode: &str = "SMS_226xxxx"; // 通知模版
const AliyunSmsSignName: &str = "阿里云"; // 短信署名

fn main()->Result<(), std::io::Error>{
    let phoneNumber="1391212xxxx";
    match  SendSMS(phoneNumber) {
        Ok(response)=> println!("{:?}",response),
        Err(err)=>println!("{}",err),
    }
}

fn SendSMS(phoneNumber: &str) -> Result<(), std::io::Error> {
    let mut client = dysmsapi::Client::NewClientWithAccessKey(
        AliyunSmsServerRegion,
        AliyunSmsAccessKeyID,
        AliyunSmsAccessKeySecret,
    )?;
    let mut request = dysmsapi::CreateSendSmsRequest();
    request.PhoneNumbers = strings::Replace(phoneNumber, "+86", "", -1);
    request.SignName = AliyunSmsSignName.to_owned();
    request.TemplateCode = AliyunSmsReportTempleateCode.to_owned();
    let response = client.SendSms(&mut request)?;
    println!("{:?}", &response);

    Ok(())
}

捐赠方式

If you like my open source project and would like to support me, you can donate through the following methods:

  • Dogecoin address DHbDfZWTYjpiGctAyYy1F9YzViTfVRW6aY
  • AliPay: limiao2008@gmail.com
  • ETH address: 0x74682cbE11De154E38D8B220ba177c28481F41a8
  • PayPal: paypal.me/wandercn

Thank you for your support!

Dependencies

~13–24MB
~434K SLoC