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.
204 Comments - Last post 21 minutes ago by grafos18
15 Comments - Last post 1 hour ago by SupportForFun
8 Comments - Last post 1 hour ago by Mayanaise
5 Comments - Last post 1 hour ago by reigifts
2,976 Comments - Last post 2 hours ago by Orionid
7 Comments - Last post 3 hours ago by ReptilianWorldOrder
243 Comments - Last post 3 hours ago by xaivierx
32 Comments - Last post 6 minutes ago by Xiangming
17 Comments - Last post 11 minutes ago by freeFORme1964
10,278 Comments - Last post 21 minutes ago by ColdOut
78 Comments - Last post 30 minutes ago by hsunkuei
16 Comments - Last post 36 minutes ago by Fluffster
11,315 Comments - Last post 47 minutes ago by PunishedStig
1,191 Comments - Last post 48 minutes ago by Yamaraus
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.