I need a list like the one you get on steamdb -> https://steamdb.info/calculator/
basically... an array with id of the games I have in my account.
Before building that list on my own, (as I'm lazy as fuck) I would like to know if I can get that somewhere in the internet

9 years ago

Comment has been collapsed.

La puoi recuperare qui
Non ci sono solo gli id, ma tramite la console del tuo broswer puoi ottenere l'array che desideri in pochi istanti

9 years ago
Permalink

Comment has been collapsed.

Deleted

This comment was deleted 4 years ago.

9 years ago
Permalink

Comment has been collapsed.

Because he/she is italian

9 years ago
Permalink

Comment has been collapsed.

Deleted

This comment was deleted 4 years ago.

9 years ago
Permalink

Comment has been collapsed.

If a user has a public profile, you can add "games?xml=1" at the end of the url to get this list.
In your case: http://steamcommunity.com/id/Sighery/games?xml=1

Then you could use the console of your browser to get the wanted array.
If you require only appIDs

var list = document.getElementsByTagName('appID');
var requiredArray = [];
for(var i=0; i<list.length; i++)
  requiredArray.push(list[i].textContent);

Edit: you could also give a look here

9 years ago
Permalink

Comment has been collapsed.

Deleted

This comment was deleted 4 years ago.

9 years ago
Permalink

Comment has been collapsed.

Avevo già recuperato la lista tramite steamdb, comunque grazie, probabilmente mi tornerà utile in futuro !

9 years ago
Permalink

Comment has been collapsed.

https://steamdb.info/myapps/ is the best I know. You can sort by title or by app id too.
(But you probably know about that since you linked from this site as well.)

9 years ago
Permalink

Comment has been collapsed.

Sign in through Steam to add a comment.