1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
/// Generates a Steam API url
///
/// # Returns
/// A string containing the URL
///
/// # Arguments
/// * `method` - A string slice containing the desired method
/// * `steamids` - A string slice containing the steamids
/// * `api_key` - A string slice containing the API Key to use with the API.
///
/// # Panics
/// `manage_api_url` will panic if an invalid/unsupported method is passed
///
/// # Example
/// Single Steam ID
/// ```
/// let method = "GetSteamLevel";
/// let steamids = "76561198421169032";
/// let api_key = "XXXXXXXXXXX";
///
/// let url = steam_api::functions::manage_api_url(method, steamids, api_key);
/// assert_eq!(url, "https://api.steampowered.com/IPlayerService/GetSteamLevel/v1/?key=XXXXXXXXXXX&steamid=76561198421169032");
/// ```