mirror of
https://github.com/JustArchiNET/ArchiSteamFarm.git
synced 2025-12-16 22:40:30 +00:00
13 lines
609 B
C#
13 lines
609 B
C#
namespace SteamAuth
|
|
{
|
|
public static class APIEndpoints
|
|
{
|
|
public const string STEAMAPI_BASE = "https://api.steampowered.com";
|
|
public const string COMMUNITY_BASE = "https://steamcommunity.com";
|
|
public const string MOBILEAUTH_BASE = STEAMAPI_BASE + "/IMobileAuthService/%s/v0001";
|
|
public static string MOBILEAUTH_GETWGTOKEN = MOBILEAUTH_BASE.Replace("%s", "GetWGToken");
|
|
public const string TWO_FACTOR_BASE = STEAMAPI_BASE + "/ITwoFactorService/%s/v0001";
|
|
public static string TWO_FACTOR_TIME_QUERY = TWO_FACTOR_BASE.Replace("%s", "QueryTime");
|
|
}
|
|
}
|