#sms #tencent #sdk #tencent-cloud

tencentcloud-sdk-sms

tencent cloud sms rust sdk

4 releases

0.2.1 Dec 22, 2022
0.2.0 Dec 22, 2022
0.1.1 Jul 21, 2022
0.1.0 Jul 21, 2022

#4 in #tencent-cloud

Download history 3/week @ 2024-02-22 1/week @ 2024-02-29 2/week @ 2024-03-28 4/week @ 2024-04-04 55/week @ 2024-04-11

61 downloads per month

MIT license

15KB
325 lines

Tencent Cloud sms rust sdk

version: 2021-01-11

signature: v3

Examples

    // prepare param
    let secret_id = "your secret_id";
    let secret_key = "your secret_key";
    let sms_sdk_app_id = "your sms_sdk_app_id";
    let template_id = "your template_id";
    let sign_name = "your sign_name";
    let region = "ap-guangzhou";
    let phone_number_set = vec!["+86".to_owned()];
    let template_param_set = vec!["123456".to_owned()];
    // build client
    let credential = Credential::new(secret_id, secret_key, None);
    let client = Client::new(credential, region);
    // build request
    let request = SendSmsRequest::new(
        phone_number_set.clone(),
        sms_sdk_app_id,
        template_id,
        sign_name,
        template_param_set,
    );
    // send
    let response = client.send_sms(request).await;
    // check
    match response {
        Ok(res) => {
            phone_number_set.into_iter().for_each(|phone_number| {
                println!(
                    "send {}: {:?}",
                    phone_number,
                    res.check_is_success(phone_number.to_owned())
                );
            });
        }
        Err(e) => {
            println!("send error: {}", e);
        }
    }

Dependencies

~5–21MB
~294K SLoC