#im #api #tcloud

tcloud-im-api

使用 Rust 实现的 tcloud im api

5 个版本

0.2.1 2022年1月10日
0.2.0 2021年12月22日
0.1.2 2021年12月21日
0.1.1 2021年12月21日
0.1.0 2021年12月21日

7#im

MIT/Apache

22KB
615

tcloud-im-api

Rust 实现的腾讯云IM接口SDK

  • 账户
  • 消息

用法

use tcloud-im-api as api

async fn do_request() {
    let sdkappid = 000000000;
    let manager_identifier = "your_identifier";
    let key = "your_key";

    let client = Clientx::new(sdkappid, manager_identifier, key);
    let resp = client.account().import(account::Account{
        face_url: "https://xxx.xxx".to_owned(),
        nick: "a name".to_owned(),
        identifier: "identifier".to_owned()
    }).await?;
}

依赖项

~13–28MB
~424K SLoC