How SteamGuard authentication works
masterSteampy supports two ways to handle SteamGuard:
- SteamGuard File: Provide a path to a file containing your credentials. The file should be a JSON object with the following keys:
steamid: Your SteamID64shared_secret: Your shared secretidentity_secret: Your identity secret
- Manual Secrets: Use the
guardmodule functions to generate one-time codes or confirmation keys using theshared_secretandidentity_secretdirectly.
{
"steamid": "YOUR_STEAM_ID_64",
"shared_secret": "YOUR_SHARED_SECRET",
"identity_secret": "YOUR_IDENTITY_SECRET"
}