10 unstable releases (4 breaking)
0.6.0 | Aug 1, 2024 |
---|---|
0.5.0 | Jul 30, 2024 |
0.4.1 | Jul 27, 2024 |
0.3.0 | Jul 5, 2023 |
0.2.5 | Jun 7, 2021 |
#1400 in Web programming
65 downloads per month
19KB
349 lines
rs-steam-workshop-api
A rust api library for the steam web workshop api
Basic Usage
use steam_workshop_api::Workshop;
let mut workshop = Workshop::new();
workshop.set_api_key(Some("yourapikey".to_string()));
let fileids = vec!['121221044', '1643520526'];
let details: Vec<WorkshopItem> = match workshop.get_published_file_details(&fileids) {
Ok(details) => details,
Err(err) => {
eprintln!("Failed to get file info");
}
};
lib.rs
:
steam_workshop_api
This library provides access to the steam web apis. Uses reqwest::blocking under the hood
Getting Started
To access any web api that requires no authentication (file details) you need to create a new instance:
use steam_workshop_api::SteamWorkshop;
let wsclient = SteamWorkshop::new();
wsclient.get_published_file_details(&["fileid1".to_string()]);
Using Authorized Methods
Authorized methods are behind the AuthedWorkshop struct, which can be generated from a Workshop instance:
use steam_workshop_api::SteamWorkshop;
let mut wsclient = SteamWorkshop::new();
wsclient.set_apikey(Some("MY_API_KEY".to_string()));
wsclient.can_subscribe("blah");
Using Proxied Methods
Proxied methods are identical to AuthedWorkshop, except can use a third party server to proxy (and keep the appkey private)
use steam_workshop_api::{SearchOptions, SteamWorkshop};
let mut wsclient = SteamWorkshop::new();
wsclient.set_proxy_domain(Some("steamproxy.example.com".to_string()));
// Does not require .set_apikey, as the proxy will handle it
wsclient.search_items(&SearchOptions {
query: "blah".to_string(),
count: 10,
app_id: 550,
cursor: None,
required_tags: None,
excluded_tags: None,
});
Dependencies
~4–15MB
~194K SLoC