Jump to content
McKay Development

wandermaus

Member
  • Posts

    6
  • Joined

  • Last visited

Posts posted by wandermaus

  1. Thanks for your response.
    I updated, but get now this error:

    node:internal/process/promises:265
                triggerUncaughtException(err, true /* fromPromise */);
                ^
    OperationalError: HTTP error 404
        at ClientRequest.<anonymous> (/app/node_modules/steam-user/components/cdn.js:585:13)
        ... 9 lines matching cause stack trace ...
        at TCP.onStreamRead (node:internal/stream_base_commons:190:23) {
      cause: Error: HTTP error 404
          at ClientRequest.<anonymous> (/app/node_modules/steam-user/components/cdn.js:585:13)
          at Object.onceWrapper (node:events:640:26)
          at ClientRequest.emit (node:events:520:28)
          at HTTPParser.parserOnIncomingClient (node:_http_client:618:27)
          at HTTPParser.parserOnHeadersComplete (node:_http_common:128:17)
          at Socket.socketOnData (node:_http_client:482:22)
          at Socket.emit (node:events:520:28)
          at addChunk (node:internal/streams/readable:315:12)
          at readableAddChunk (node:internal/streams/readable:289:9)
          at Socket.Readable.push (node:internal/streams/readable:228:10)
          at TCP.onStreamRead (node:internal/stream_base_commons:190:23),
      isOperational: true
    }

     

  2. /workspaces/csgo-old-api/node_modules/simple-vdf/index.js:54
                    throw new SyntaxError("VDF.parse: invalid syntax on line " + (i+1));
                          ^
    
    SyntaxError: VDF.parse: invalid syntax on line 6278
        at Object.parse (/workspaces/csgo-old-api/node_modules/simple-vdf/index.js:54:23)
        at /workspaces/csgo-old-api/node_modules/steam-user/components/apps.js:237:21
        at Array.forEach (<anonymous>)
        at SteamUser.<anonymous> (/workspaces/csgo-old-api/node_modules/steam-user/components/apps.js:233:24)
        at SteamUser._handleMessage (/workspaces/csgo-old-api/node_modules/steam-user/components/03-messages.js:639:35)
        at SteamUser._handleNetMessage (/workspaces/csgo-old-api/node_modules/steam-user/components/03-messages.js:562:8)
        at SteamUser._processMulti (/workspaces/csgo-old-api/node_modules/steam-user/components/03-messages.js:693:9)
        at process.processTicksAndRejections (node:internal/process/task_queues:95:5)

    I have an application running where I use the "node-steam-user" package.
    Since yesterday, I get this error after login in to steam.

    Anything wrong on my end?

  3. I use my own fork of node-csgo-cdn to get the in game coins / pins. This worked perfectly fine, until the new 10 year anniversary coin got introduced. It seems that the steam CDN always serves me the "large" image version of the requested item. But for the new coin, the large version is a totally different image then the one displayed in game. (See screenshot) Now is my question, if there is any way to get the "small" image version, because this would be the one that is used in the in game menu.

    direct.png

    problem_1.png

  4. I use node-steam-user and node-csgo-cdn. I had the same Issue as described in this post. Fixed it with this pull request.
    My application worked perfectly fine until this morning. When "node-csgo-cdn" trys to download the latest files from the depot,
    it throws following error.

    Quote

    node:internal/process/promises:279
                triggerUncaughtException(err, true /* fromPromise */);
                ^
    OperationalError: HTTP error 401
        at ClientRequest.<anonymous> (node_modules\steam-user\components\cdn.js:572:13)
        ... 9 lines matching cause stack trace ...
        at TCP.onStreamRead (node:internal/stream_base_commons:190:23) {
      cause: Error: HTTP error 401
          at ClientRequest.<anonymous> (node_modules\steam-user\components\cdn.js:572:13)
          at Object.onceWrapper (node:events:646:26)
          at ClientRequest.emit (node:events:526:28)
          at HTTPParser.parserOnIncomingClient (node:_http_client:618:27)
          at HTTPParser.parserOnHeadersComplete (node:_http_common:128:17)
          at Socket.socketOnData (node:_http_client:482:22)
          at Socket.emit (node:events:526:28)
          at addChunk (node:internal/streams/readable:315:12)
          at readableAddChunk (node:internal/streams/readable:289:9)
          at Socket.Readable.push (node:internal/streams/readable:228:10)
          at TCP.onStreamRead (node:internal/stream_base_commons:190:23),
      isOperational: true
    }

    When trying to call the url manually, for example http://cache4-fra1.steamcontent.com/depot/731/manifest/2494342422876109608/5 I get a 401 error. 
     

    Did steam change something related to CDN, depots?

×
×
  • Create New...