Includes Posted July 12, 2016 Report Posted July 12, 2016 Hello, what should i do to voteup/rate screenshots via nodejs? Some hint? Where should i start, I am green Quote
Dr. McKay Posted July 12, 2016 Report Posted July 12, 2016 https://www.google.com/search?q=node.js+screenshot&ie=utf-8&oe=utf-8 Quote
Includes Posted July 12, 2016 Author Report Posted July 12, 2016 (edited) Oh i mean rate screenshots on steam community. For example this screenshot: https://steamcommunity.com/sharedfiles/filedetails/?id=388660226 Also i found https://github.com/SteamDatabase/SteamTracking/blob/e0e3e9b12c99401fe665376c74975274e8840625/Scripts/Community/sharedfiles_functions_logged_in.js but i don't know how to start. function VoteUp(item_id) { if ( !$('VoteUpBtn').hasClassName( 'toggled' ) ) { $('action_wait').show(); var options = { method: 'post', postBody: 'id=' + item_id + '&sessionid=' + g_sessionID, onSuccess: (function(item_id){ return function(transport) { $('action_wait').hide(); if ( !CheckVoteResults( transport ) ) return; ToggleChildItemVoteBtns( transport, true ); var votesUpCount = $('VotesUpCount'); if ( votesUpCount ) { UpdateFormattedNumber( votesUpCount, 1 ); $('VotesUpCountContainer').show(); } $('VoteUpBtn').addClassName('toggled'); $('VoteDownBtn').removeClassName('toggled'); var voteLaterBtn = $('VoteLaterBtn'); if ( voteLaterBtn ) { voteLaterBtn.hide(); } var blurb = $('rated_blurb'); if( blurb != null ) blurb.show(); var next = $('voteNext'); if( next != null ) next.show(); } }(item_id)) }; new Ajax.Request( 'https://steamcommunity.com/sharedfiles/voteup', options ); } return false; } Edited July 12, 2016 by Includes Quote
darkwar123 Posted July 12, 2016 Report Posted July 12, 2016 (edited) You should do POST request to "https://steamcommunity.com/sharedfiles/votedown" || "https://steamcommunity.com/sharedfiles/voteup" (example for this link "https://steamcommunity.com/sharedfiles/filedetails/?id=388660226") let options = { url: "https://steamcommunity.com/sharedfiles/votedown" || "https://steamcommunity.com/sharedfiles/voteup", form: { id: 388660226, //screenshoot_id sessionid: 778dd9d24e7d325f2ca06af0//steam session id in cookies or you can take it when auth with node-steamcommunity ​} };If you arre using node-steamcommunity do this steam.httpRequestPost(options) or you can use request but you should set up headers with cookies! Edited July 12, 2016 by darkwar123 Quote
Includes Posted July 12, 2016 Author Report Posted July 12, 2016 Can you help me with it? I can pay. Give me your steam profile, please. Quote
Dr. McKay Posted July 12, 2016 Report Posted July 12, 2016 I don't think bot-voting is a terribly great idea. Quote
Includes Posted July 12, 2016 Author Report Posted July 12, 2016 I don't think bot-voting is a terribly great idea.It's hard to do? I have arround 600 accounts without steam limition. Quote
Dr. McKay Posted July 12, 2016 Report Posted July 12, 2016 I think that's a very, very bad idea. Quote
Includes Posted July 13, 2016 Author Report Posted July 13, 2016 I think that's a very, very bad idea.Why you think that? I will try do this. Quote
Dr. McKay Posted July 13, 2016 Report Posted July 13, 2016 Using a bunch of sockpuppet accounts to fake votes sounds like a good way to get yourself banned. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.