Skip to content

Instantly share code, notes, and snippets.

@MalikAQayum
Last active October 31, 2019 15:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MalikAQayum/9d0be7aaecba4d3fed778ea20969783b to your computer and use it in GitHub Desktop.
Save MalikAQayum/9d0be7aaecba4d3fed778ea20969783b to your computer and use it in GitHub Desktop.
be smart when you do this and do it in batches if you want to avoid temp ip bans from valve.
/**
https://store.steampowered.com/curator/<curatorid>/admin/review_create/
be smart when you do this and do it in batches if you want to avoid temp ip bans from valve.
*/
var appid_arr =[]; // example: appid_arr = [10, 240, 440, 570, 730];
for (var i = 0; i < appid_arr.length; i++) {
$J.post("https://store.steampowered.com/curator/9628392-GreenDB/admin/ajaxcreatereview/", {
appid: appid_arr[i],
blurb: "", //200 character limit
link_url: "",
received_compensation: "", //"" = no, "paid" = got compensation.
received_for_free: "", //"" = no, "free" = free
recommendation_state: 0, //0 = recommended, 1 = not recommended, 2= informative
sessionid: g_sessionID
});
console.log("Curator Review Created for appid=> " + appid_arr[i]);
console.log(new Date());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment