LinkedIn bot

JerryWoodburn

Newbie
Joined
Oct 23, 2016
Messages
20
Reaction score
0
Hi guys

I am interested in creating BOTs in my spare time,and i found out that linkedIn would be interesting.
Which functions would need the bot have,to be usable ? (i dont know LinkedIn much,so asking)

Any ideas,on what to focus? Just adding random contacts is boring,i am looking for something more complex.
Thanks for ideas!
 
Something that will attract profile views - which seems to be the goal of linkedin. So maybe "likes", "posts", "comments" -- much like any other social media bot i guess

I'd be interested if you build it! Good luck!
 
While exploring i found some script that only sends connection requests for Linkedin, user manual is go to linkedin.com/mynetwork on chrome and ctrl+shift+i and paste this.
Code:
var countOfPagesScrolled = 5;

function scrollDown(height, countOfPagesScrolled){
    scroll(0, document.body.clientHeight);
    setTimeout(function(){
        if(height != document.body.clientHeight && countOfPagesScrolled > 0){
            scrollDown(document.body.clientHeight, --countOfPagesScrolled);
        }else
            return sendRequest();
    }, 1500);
}

function sendRequest(){
    var contactsNum = 0;
    jQuery.each( $('.button-secondary-small'),     function() {
        contactsNum++;
        $(this).click();
        console.log($(this).attr('title') + ' ' + contactsNum);
    });
    console.log('Just added contacts: ' + contactsNum);
}

scrollDown(document.body.clientHeight, countOfPagesScrolled);
 
Back
Top