Hello!
Currently, I'm trying to create a new Steam Web API Key with the steam-community package.
When I try to execute the code below
community.login(loginOptions, (err) => {
community.createWebApiKey({
domain: 'localhost'
}, function(err, result) {
console.log(err, result);
})
});
I will receive an Undefined Error
Error: Error undefined
at exports.eresultError (/Users/dkuijs/Documents/Steam Trading Bot/steam-trading-bot/node_modules/steamcommunity/components/helpers.js:57:12)
at SteamCommunity.<anonymous> (/Users/dkuijs/Documents/Steam Trading Bot/steam-trading-bot/node_modules/steamcommunity/components/webapi.js:147:22)
at Request._callback (/Users/dkuijs/Documents/Steam Trading Bot/steam-trading-bot/node_modules/steamcommunity/components/http.js:67:15)
at self.callback (/Users/dkuijs/Documents/Steam Trading Bot/steam-trading-bot/node_modules/request/request.js:185:22)
at Request.emit (node:events:520:28)
at Request.<anonymous> (/Users/dkuijs/Documents/Steam Trading Bot/steam-trading-bot/node_modules/request/request.js:1154:10)
at Request.emit (node:events:520:28)
at Gunzip.<anonymous> (/Users/dkuijs/Documents/Steam Trading Bot/steam-trading-bot/node_modules/request/request.js:1076:12)
at Object.onceWrapper (node:events:634:28)
at Gunzip.emit (node:events:520:28) {
eresult: undefined
} undefined
Does someone know what the error could be?