Hey. I found a method to get steamApps of account. Would be great to see that in CSteamUser methods . Cookies must be provided.
const xml = await new Promise((resolve_, reject_) => {
this._community.httpRequestGet(
`https://steamcommunity.com/profiles/[U:1:69762859]/games?xml=1`,
(err: Error, result: any) => {
if(err) reject_(err);
resolve_(result.body);
}
);
});
//Sometimes iam getting ":0:" id part by SteamID.getSteam3RenderedID() and this method isn't work.
//So i just replaced it with ":1:" and it works well at least on my tests.