rust_proc_qq icon indicating copy to clipboard operation
rust_proc_qq copied to clipboard

[RUST] 模块化QQ机器人框架 (Based RICQ)

Results 7 rust_proc_qq issues
Sort by recently updated
recently updated
newest added

Cargo.toml ``` anyhow = "1.0.59" ``` Cargo.lock ``` [[package]] name = "anyhow" version = "1.0.59" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c91f1f46651137be86f3a2b9a8359f9ab421d04d941c62b5982e1ca21113adf9" ```

现在仅有使用桌面打开二维码的功能 ```rust .show_rq(Some(ShowQR::OpenBySystem)) ``` ```rust # 打印到控制台 .show_rq(Some(ShowQR::PrintToConsole)) ``` 需要使用 https://github.com/timvisee/qr2term-rs 实现 打印到控制台设置为默认

扫码时提示`该APP尚未开通扫描二维码登录的权限。` ```Rust ClientBuilder::new() .priority_session("session.token") // 默认使用session.token登录 .device(JsonFile("device.json".to_owned())) // 设备默认值 .authentication(Authentication::QRCode) // 若不成功则使用二维码登录 .modules(vec![module::dnd::module(), module::dice::module()]) // 您可以注册多个模块 .build() .await .unwrap() .start() .await .unwrap() .unwrap(); ``` 使用账号密码登录无法通过设备锁。关闭设备锁账号疑似被风控,QQ群信息发送长度受限。

让设备锁、短信解锁变得可配置

命令类型不匹配或者前缀部分匹配时推测出用户想要输入的命令并给出提示

应该弄个trait,个性化处理ticket