We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This function will parse the results of https://steamcommunity.com/my/home into a JSON object. It could be done along the lines of this:
function getFriendActivity(startDate, daysSince, callback) { if (typeof startDate === "number") { callback = daysSince; daysSince = startDate; startDate = new Date(); startDate.setHours(0); startDate.setMinutes(0); startDate.setSeconds(0); startDate = Math.floor(startDate.valueOf() / 1000); } daysSince *= 250; this.httpRequestGet("https://steamcommunity.com/id/royalgamer06/ajaxgetusernews?start=" + startDate + "&startoffset=" + daysSince, (error, response, data) => { /* Parsing result, error and callback handling */ }); }
Thank you
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
This function will parse the results of https://steamcommunity.com/my/home into a JSON object.
It could be done along the lines of this:
Thank you
The text was updated successfully, but these errors were encountered: