DANG1172 Posted February 28, 2022 Report Share Posted February 28, 2022 Could i have some help with the Access denied error when using getEncryptedAppTicket The problem i am having is that getEncryptedAppTicket returns Access Denied Also clientSteam.accountName returns undefined even though clientSteam.steamID is returning a Valid User ID Code Below: clientSteam.logOn({ 'accountName': username, 'password': password }); clientSteam.on('loggedOn', details => { console.log('[Steam]: Signed into Steam as ' + clientSteam.steamID + '.' + ' ' + clientSteam.accountName ); clientSteam.getEncryptedAppTicket(AppId, null, (err, ticket) => { if (err) { console.log("[Steam]: AppTicket error: " + err); return; } Quote Link to comment Share on other sites More sharing options...
Dr. McKay Posted February 28, 2022 Report Share Posted February 28, 2022 Do you own the app in question? accountName is not a valid property of SteamUser objects, so that should expectedly be undefined. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.