Jump to content
McKay Development

asdfghjkl

Member
  • Posts

    8
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

asdfghjkl's Achievements

  1. Thank you for your help! I should look into it a bit more — it's most likely something I did wrong. Thanks again for your assistance! Wishing you a wonderful day.
  2. Here is some information from my refresh_token. I believe it hasn't expired yet, since I've recently logged in again using Steam Desktop Authenticator. Payload: { "iss": "", "sub": "", "aud": [ "web", "renew", "derive" ], "exp": 1762718905, "nbf": 1735992415, "iat": 1744632415, "jti": "", "oat": 1744632415, "per": 1, "ip_subject": "", "ip_confirmer": "" }
  3. Using steamRefresh_steam from login post Response Headers Set-Cookie is the same. https://login.steampowered.com/jwt/finalizelogin {"response":{}}
  4. Thank you! The refresh_token comes from the maFile generated by linking with Steam Desktop Authenticator. This is Steam Desktop Authenticator:
  5. I'm trying to use the Steam Web API endpoint: https://api.steampowered.com/IAuthenticationService/GenerateAccessTokenForApp/v1/ I'm sending a POST request with steamid and refresh_token, but the response is always: { "response": {} } It was working fine yesterday, but stopped working today. Is there any better way to update steamLoginSecure? Thank you very much! post_url = 'https://api.steampowered.com/IAuthenticationService/GenerateAccessTokenForApp/v1/' post_data = { 'steamid': steam_id, 'refresh_token': refresh_token, } response = session.post(post_url, data=post_data, allow_redirects=False, timeout=20) print(response.text) {"response":{}}
  6. I want to obtain information on my items for sale in a specific game on Steam Market. I am selling items for both CS2 and TF2 on the Steam Market. I have obtained some information through https://steamcommunity.com/market/mylistings, but this information is very mixed, including both my CS2 and TF2 items for sale, as well as my buy orders. I want to further filter the information by adding params to https://steamcommunity.com/market/mylistings, so that I can specifically obtain the data for my TF2 items for sale. I would greatly appreciate it if you could explain how to fill in params!
  7. Thanks a lot. My current plan is to obtain inventory before delisting and after delisting. Comparing these two, the new ID obtained is the asset ID of the item I delist. I wonder if there exists a better way? Especially, if I have many Mann Co. Store Packages, how can I identify the one I delist. (It seems that I can't use "classid" and "instanceid" to identify it with https://steamcommunity.com/profiles/{steam_id}/inventory/json/440/2/ Appreciate it.💖
  8. I want to write a program to relist my item on steam market. I use https://steamcommunity.com/market/removelisting/{asset ID} to remove it and https://steamcommunity.com/market/sellitem/ to relist it. But when I remove the item, its asset ID changed and I don't know how to get the new asset ID. I guess that I can use original_id and https://api.steampowered.com/IEconItems_440/GetPlayerItems/v1/?key= to get the new asset ID. So is there anyway to get the original_id of my items listed on the steam market? It seems that I can't find the original_id in web source. Thanks a lot!💖
×
×
  • Create New...