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
Comment has been collapsed.
Avevo già recuperato la lista tramite steamdb, comunque grazie, probabilmente mi tornerà utile in futuro !
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.)
Comment has been collapsed.
5 Comments - Last post 1 minute ago by hbarkas
19 Comments - Last post 11 minutes ago by RiderOfPhoenix
70 Comments - Last post 1 hour ago by Chris76de
407 Comments - Last post 1 hour ago by TreadLife
307 Comments - Last post 1 hour ago by MaryVirgin
1,829 Comments - Last post 1 hour ago by OwieczkaDollyv21
979 Comments - Last post 2 hours ago by MeguminShiro
4,353 Comments - Last post 9 minutes ago by pizurk
75 Comments - Last post 9 minutes ago by Deleted2137
11,507 Comments - Last post 10 minutes ago by Deleted2137
1,269 Comments - Last post 14 minutes ago by DeadKanekiNote
8,946 Comments - Last post 15 minutes ago by coleypollockfilet
222 Comments - Last post 35 minutes ago by quinnix
812 Comments - Last post 48 minutes ago by gus09
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
Comment has been collapsed.