Jump to content
McKay Development

4049_1572836826

Member
  • Posts

    57
  • Joined

  • Last visited

Posts posted by 4049_1572836826

  1. U can set cookie jar for reqest or extract from steamstore and GET request on https://store.steampowered.com/api/addtocart/
    And another steps u must reverse yourself cuz its against TOS I think

    This code up add games to cart in bulk, and from now on they will be visible between devices.
    https://store.steampowered.com/news/collection/steam/?emclan=103582791457287600&emgid=4149575031731807335
    New
    s: One cart across all devices

    Enjoy 

    query params for api get request : packageids with numbers, coma divided

  2. Hey, its possible auth QR session by scanning ? with some of this modules ? Like u are logged in steam-user modul and idk function scann QR and auth QR session 😅 Thanks.

  3. and is there any way to use it with steam-user ?

    with steam community it works but I need use it with steam-user 

    steamcommunity solutions
     

      const session = new LoginSession(EAuthTokenPlatformType.WebBrowser)
    
      session.refreshToken = refreshToken
    
      const cookies = await session.getWebCookies()
    
      steamcommunity.setCookies(cookies)
    
      return new Promise((resolve) => {
      	steamcommunity.loggedIn((err, loggedIn) => {
    		resolve(steamcommunity.steamID.getSteamID64())
      	})
      })

     

  4. Hi, I got my hands on a new refreshroken which brings back store.steam ... but when I put it into steam-user it error me on validation :(
     

    Error: This refreshToken is not valid for logging in to the Steam client
        at /Users/xxxxxxx/node_modules/.pnpm/[email protected]/node_modules/steam-user/components/08-logon.js:133:16
        at process.processTicksAndRejections (node:internal/process/task_queues:77:11) {
      tokenAudiences: [ 'web', 'renew', 'derive' ]
    }

    Here is JWT decode

    {
      iss: 'steam',
      sub: '765611995xxxxx',
      aud: [ 'web', 'renew', 'derive' ],
      exp: 1700350xxx,
      nbf: 1689078xxx,
      iat: 1697718xxx,
      jti: '0D52_xxxx_xxx',
      oat: 1697xxxx,
      per: 0,
      ip_subject: 'xx.xx.xx.xx',
      ip_confirmer: 'xx.xx.xx.xx'
    }

     

    Im, try with steam-session - EAuthTokenPlatformType.WebBrowser- renewRefreshToken()
    got: Error: AccessDenied

  5. Browser script:

    document.cookie = 'steamLoginSecure=xxxxxxxxxxxxxxxxxxxxxxx; expires=Fri, 02 Jun 2023 10:14:12 GMT; path=/';

     

    Node script with steam-session

    
          log(`Generating cookie: ${token}`, 'info', 'steam-session', true, id)
    
          const session = new LoginSession(EAuthTokenPlatformType.WebBrowser)
          session.refreshToken = token
          const cookie = await session.getWebCookies()
    
          log(`Cookie: ${cookie}`, 'info', 'steam-session', true, id)
×
×
  • Create New...