steam

How to get Steam web session cookie programatically

How to get Steam web session cookie programatically Question: I’m currently trying to make a steam web api (the unofficial one which is partially documented here: https://github.com/Revadike/InternalSteamWebAPI/wiki) wrapper. Like with every other unofficial api you have to get a sessionID to get access to certain api calls (for example selling items etc) When actually implementing …

Total answers: 2

Can't get a steam user's inventory through the API

Can't get a steam user's inventory through the API Question: I’m trying to get info about a Steam user’s inventory but it seems that I’m doing something wrong. After running script below (ofc first I replace PROFILEID with my Steam User ID) all I get is {‘success’: False}. Can anyone tell me how to fix …

Total answers: 1

How can i use SteamAPI with Django?

How can i use SteamAPI with Django? Question: How can this be possible? I am trying to add steam authentication button in my website and get general information: username, steam id. something like this as example: views.py: # Example from django.shortcuts import render from django.http return HttpResponse def index(response): … return render(‘link.html’, response) # link …

Total answers: 2