· 6 years ago · Feb 29, 2020, 08:44 PM
1Steam Auth
2
3• Create/copy your Steam Web API Key
4• Obtain the SteamID64 string for each of the accounts you wish to allow.
5https://steamid.io/ is one tool for looking these up.
6• Configure your nodecg/cfg/nodecg.json as such:
7
8{
9 "login": {
10 "enabled": true,
11 "sessionSecret": "Make this a random string, like one from https://randomkeygen.com/",
12 "steam": {
13 "enabled": true,
14 "apiKey": "YOUR_STEAM_WEB_API_KEY",
15 "allowedIds": [
16 "paste the SteamId64s you want to allow here",
17 "they look like this",
18 "76561197974943998"
19 ]
20 }
21 }
22}