#roblox-api #roblox #api #api-wrapper

已删除 rsblox

Rust语言的Roblox API库

0.0.1 2023年3月19日

#6 in #roblox-api

MIT 许可证

21KB
513 代码行

rsblox

rsblox是一个异步Rust Roblox API封装器;是PythonicIconic的RbxAPI-rs的分支。

用法

TBA

以下是以三种不同方式获取指定用户示例!

use rbxapi;

#[tokio::main]
async fn main() {
    let cookie = "your_cookie";
    let client = rbxapi::Client.new().cookie(cookie).await;
    
    let my_user = client.current_user().await;
    let str_user = client.user("builderman").await;
    let int_user = client.user(156).await;
}

依赖项

~5–21MB
~266K SLoC