Crates.io | tappet |
lib.rs | tappet |
version | 0.6.0 |
source | src |
created_at | 2021-11-12 17:01:03.593757+00 |
updated_at | 2024-02-07 19:15:04.205449+00 |
description | Strongly typed wrapper for the official Valve's Steam API. |
homepage | https://github.com/saskenuba/SteamHelper-rs/tree/master/crates/tappet |
repository | https://github.com/saskenuba/SteamHelper-rs/tree/master/crates/tappet |
max_upload_size | |
id | 480990 |
size | 46,160 |
Pure Rust bindings to the Steam Web API and XPAW Steam API, where the latter contains some undocumented albeit useful endpoints of the Steam Web API.
This library was heavily inspired by Rust Github API Wrapper.
Internally, Steam-Web-API uses a reqwest client for simplicity's sake, but this may change in the future.
Since this library makes heavy use of procedural macros to generate the strongly typed bindings, you may not get auto completion for endpoints if your IDE doesn't support proc-macro completion.
Add the following to your Cargo.toml
[dependencies]
tappet = "^0.4"
Or if you want the blocking client:
tappet = { version = "^0.4", default-features = false, features = ["blocking"] }
Then in your lib.rs
or main.rs
file add:
use tappet::{Executor, SteamAPI};
use tappet::{Executor, SteamAPI};
// if using blocking client
// use tappet::blocking::{Executor, SteamAPI};
#[tokio::main]
async fn main() -> Result<()> {
let client = SteamAPI::new(std::env!("STEAM_API"));
// You choose between the already structured response
let response: tappet::response_types::GetPlayerBansBase = client
.get()
.ISteamUser()
.GetPlayerBans(vec!["76561197984835396".to_string()])
.execute_with_response()
.await?;
// or the raw response from reqwest
let response: reqwest::Response = client
.get()
.ISteamUser()
.GetPlayerSummaries(vec!["76561197984835396".to_string()])
.execute()
.await?;
}
// the bot you want to recover pending trade offers
let bot_api_key: &str = "..."
let response: GetTradeOffersResponse = api_client
.get()
.IEconService()
.GetTradeOffers(true, false, u32::MAX, None, None, None, None)
.inject_custom_key(bot_api_key)
.execute_with_response()
.await?;
Not all endpoints have the structured endpoint response. You can contribute!