Skip to content

Instantly share code, notes, and snippets.

@DeftNerd
Forked from icodeforlove/linkedin-auto-endorser.js
Last active March 14, 2017 17:05
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DeftNerd/4abf63c7d0e680d62a2cd26d5340c9f3 to your computer and use it in GitHub Desktop.
Save DeftNerd/4abf63c7d0e680d62a2cd26d5340c9f3 to your computer and use it in GitHub Desktop.
Endorse everyone on linkedin
(function () {
var csrfToken = $('[name="csrfToken"]').val();
var profiles = 120 + Math.floor(Math.random() * (25 - 1 + 1)) + 1;
$.getJSON('https://www.linkedin.com/hp/modules/ozfeed/promo/endorsements/fetch?offset=0&count=' + profiles, function (response) {
var endorsements = response.endorsements;
console.log('found ' + endorsements.length + ' endorsements');
function endorse (callback) {
var endorsement = endorsements.shift();
if (!endorsement) {
return console.log('done');
}
console.log('endorsing "' + endorsement.endorsee.fullName + '" for "' + endorsement.skillName + '"');
$.post('https://www.linkedin.com/hp/modules/ozfeed/promo/endorsements/accept', {
csrfToken: csrfToken,
signature: endorsement.signature
}, function (response) {
setTimeout(function () {
endorse();
}, 4000 + Math.random() * 2000)
});
}
endorse();
});
})();
@DeftNerd
Copy link
Author

Log into LinkedIn and then open your javascript console (F12) and paste this in. It'll grab between 80 and 120 possible endorsements and endorse each one with a random delay of between 4 and 6 seconds between each one. LinkedIn limits users to 150 endorsements in a 24 hour period, so this is set to not even get close to that limit. The randomness of the number of endorsements and the delay between each one is meant to help you fly under their radar.

ONLY RUN THIS ONCE A DAY!

@DeftNerd
Copy link
Author

Changed this to generate between 100 and 125 endorsements.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment