Pinterest - Mass Follow - Javascript Code

36 replies
Hello Warriors!

Here I go again. I would like to share this tutorial for mass following people that's interested to your niche!

IMPORTANT!! Make sure you have an estimated 300 pinners or less to follow per day! (avoid getting banned!)

Example: "Fitness"

3 Steps

1.) Search for your niche and click "Pinners"
2.) Follow them all
3.) Get potential customers



Here are the steps for using the code:

Here's the magic code:

Code:
javascript:var inputs = document.getElementsByClassName('UserFollowButton btn rounded Button hasText gridItem Module ajax notNavigatable ui-FollowButton'); for(var i=0; i<inputs.length;i++) { inputs[i].click(); }
Step 1.) Use Google Chrome or FireFox

Step 2.) Right Click -> Inspect Element



Step 3.) Go to "Console" tab, paste the magic code, and hit ENTER



IMPORTANT!! Make sure you have an estimated 300 pinners or less to follow per day! (avoid getting banned!)

Click the "Thanks" button if you found this tutorial useful.

What do you think about this guys? Can you also share your marketing strategies using Pinterest?
#code #follow #javascript #mass #pinterest
  • Profile picture of the author Gesh
    What exactly does the code do? not quite sure here?
    {{ DiscussionBoard.errors[9168854].message }}
  • Profile picture of the author askdanyal
    I pasted the code and hit enter
    it showed this in blue
    javascript:var inputs = document.getElementsByClassName('UserFollowButton btn rounded Button hasText gridItem Module ajax notNavigatable ui-FollowButton'); for(var i=0; i<inputs.length;i++) { inputs[i].click(); }
    undefined
    Signature

    \

    {{ DiscussionBoard.errors[9168867].message }}
  • Profile picture of the author Jason Stewart
    In that for loop, I would setTimeout(function() { inputs[i].click() }, 1000);. This adds 1 second between follow button clicks and would make it less likely for you to be banned from pinterest.
    Signature

    Beat the competition with better long tail keywords:

    http://keywordstreamer.com

    {{ DiscussionBoard.errors[9170021].message }}
  • Profile picture of the author darkc0de1
    Thanks for the tip.
    {{ DiscussionBoard.errors[9170272].message }}
  • Profile picture of the author Jason Stewart
    I went to try this out last night, and I am AGAIN reminded of why I should test my code before I write a post about it

    setTimeout is asynchronous, so it will return IMMEDIATELY in the loop and wait a second before clicking those buttons. You don't want that. What we want is about a second between clicks, and should look like this instead:

    var inputs = document.getElementsByClassName('UserFollowButton btn rounded Button hasText gridItem Module ajax notNavigatable ui-FollowButton'); for(var i=0; i<inputs.length;i++) { setTimeout(function() {inputs[i].click();}, (1000 * i)) }
    Signature

    Beat the competition with better long tail keywords:

    http://keywordstreamer.com

    {{ DiscussionBoard.errors[9173030].message }}
    • Profile picture of the author Sara Vita
      Originally Posted by Jason Stewart View Post

      I went to try this out last night, and I am AGAIN reminded of why I should test my code before I write a post about it

      setTimeout is asynchronous, so it will return IMMEDIATELY in the loop and wait a second before clicking those buttons. You don't want that. What we want is about a second between clicks, and should look like this instead:

      var inputs = document.getElementsByClassName('UserFollowButton btn rounded Button hasText gridItem Module ajax notNavigatable ui-FollowButton'); for(var i=0; i<inputs.length;i++) { setTimeout(function() {inputs[i].click();}, (1000 * i)) }
      Hi do i add this after the other code?
      {{ DiscussionBoard.errors[9176195].message }}
  • Profile picture of the author anferro
    would be good one for twitter too: D
    {{ DiscussionBoard.errors[9173836].message }}
  • Profile picture of the author hunteryz
    Follow people, people will follow you

    Thanks for sharing
    Signature
    If you would know the value of money, go and try to borrow some.
    Authentic Chinese Food Recipes
    http://yzenith.com
    {{ DiscussionBoard.errors[9174972].message }}
  • Profile picture of the author easytake123
    i tried the code but it says undefined .@Jason Stewart
    {{ DiscussionBoard.errors[9177045].message }}
    • Profile picture of the author darkc0de1
      Originally Posted by easytake123 View Post

      i tried the code but it says undefined .@Jason Stewart
      Use the orignal code
      {{ DiscussionBoard.errors[9177282].message }}
      • Profile picture of the author easytake123
        Originally Posted by darkc0de1 View Post

        Use the orignal code
        i did and it works for two times .But when i used another day ,it says undefined .i have tried to clear console and cookie ,it doesn't help .
        {{ DiscussionBoard.errors[9177551].message }}
        • Profile picture of the author darkc0de1
          Originally Posted by easytake123 View Post

          i did and it works for two times .But when i used another day ,it says undefined .i have tried to clear console and cookie ,it doesn't help .
          It works for me. I just tried it few seconds ago.

          use this:

          Code:
          javascript:var inputs = document.getElementsByClassName('UserFollowButton btn rounded Button hasText gridItem Module ajax notNavigatable ui-FollowButton'); for(var i=0; i<inputs.length;i++) { inputs[i].click(); }
          {{ DiscussionBoard.errors[9177612].message }}
          • Profile picture of the author Jason Stewart
            Alternative version:

            Pinterest makes heavy use of jquery, which you can also use to your advantage. I was running into issues of pinterest throttling my follower requests, so I introduced a 2 second delay.

            $('.UserFollowButton').each(function(i) { $(this).delay(i * 2000).queue(function() { $(this).trigger('click'); })});
            Signature

            Beat the competition with better long tail keywords:

            http://keywordstreamer.com

            {{ DiscussionBoard.errors[9189132].message }}
            • Profile picture of the author AAllen82
              Originally Posted by Jason Stewart View Post

              Alternative version:

              Pinterest makes heavy use of jquery, which you can also use to your advantage. I was running into issues of pinterest throttling my follower requests, so I introduced a 2 second delay.

              $('.UserFollowButton').each(function(i) { $(this).delay(i * 2000).queue(function() { $(this).trigger('click'); })});
              Thanks Jason. Could you provide a full version of the script? Im unsure how to integrate this with your earlier version.

              Thanks
              Anthony
              {{ DiscussionBoard.errors[9195155].message }}
              • Profile picture of the author Jason Stewart
                Originally Posted by AAllen82 View Post

                Thanks Jason. Could you provide a full version of the script? Im unsure how to integrate this with your earlier version.

                Thanks
                Anthony
                That snippet works by itself. Just go to a pinner page, scroll down a little bit, open a javascript console, and paste it in.
                Signature

                Beat the competition with better long tail keywords:

                http://keywordstreamer.com

                {{ DiscussionBoard.errors[9195457].message }}
                • Profile picture of the author AAllen82
                  Ah apologies. I see this now. This works for me on Chrome.
                  Thanks again Jason.
                  {{ DiscussionBoard.errors[9196863].message }}
          • Profile picture of the author easytake123
            Originally Posted by darkc0de1 View Post

            It works for me. I just tried it few seconds ago.

            use this:

            Code:
            javascript:var inputs = document.getElementsByClassName('UserFollowButton btn rounded Button hasText gridItem Module ajax notNavigatable ui-FollowButton'); for(var i=0; i<inputs.length;i++) { inputs[i].click(); }
            i followed all the steps and it comes out "var inputs = document.getElementsByClassName('UserFollowButton btn rounded Button hasText gridItem Module ajax notNavigatable ui-FollowButton'); for(var i=0; i<inputs.length;i++) { inputs[i].click(); setTimeout(function() { inputs[i].click() }, 2500); }
            undefined"

            it cannot always work.
            {{ DiscussionBoard.errors[9194035].message }}
  • Profile picture of the author dancoc
    it worked for me on mozilla but not on google chrome. thank you very much for it. it is great.
    {{ DiscussionBoard.errors[9195549].message }}
  • Profile picture of the author Emmanuel Sopitan
    Hi Jason

    I sent you a private message.
    Signature

    Youbankdaily.com

    Guaranteed $100 a day

    {{ DiscussionBoard.errors[9197333].message }}
  • Profile picture of the author justclick
    Javascript is the scripting language of the web used to design and build website.
    Signature
    {{ DiscussionBoard.errors[9197349].message }}
  • Profile picture of the author AAllen82
    The following can also be used to like pins. Thanks to Jason Stewart for the original JS (iI just edited hie version)

    $('.LikeButton').each(function(i) { $(this).delay(i * 2000).queue(function() { $(this).trigger('click'); })});
    {{ DiscussionBoard.errors[9197949].message }}
  • Profile picture of the author howarddavidson
    Worked for me on Mozilla.
    Thanks for this mate.
    Signature
    howardjdavidson.com - Howard Davidson, marketing guy in Arlington, MA writes about marketing, advertising, social media and brand strategy with a touch of sarcasm.

    howarddavidsonarlingtonma.com - My secondary blog
    {{ DiscussionBoard.errors[9198106].message }}
  • Profile picture of the author getnewonline
    thank you but it is not work for me
    {{ DiscussionBoard.errors[9198156].message }}
    • Profile picture of the author darkc0de1
      Originally Posted by getnewonline View Post

      thank you but it is not work for me

      I made a video cast for you my friend!

      2014-05-27_0052 - darkc0de1's library
      {{ DiscussionBoard.errors[9221131].message }}
      • Profile picture of the author easytake123
        Your code really works .I used the code to do mass follow and mass like in my three accounts .I even stay 5 seconds between clicks .What's frustrated is that my three accounts were suspended without any notice .So when you use the code ,be more careful!
        {{ DiscussionBoard.errors[9231092].message }}
        • Profile picture of the author Jason Stewart
          Originally Posted by easytake123 View Post

          Your code really works .I used the code to do mass follow and mass like in my three accounts .I even stay 5 seconds between clicks .What's frustrated is that my three accounts were suspended without any notice .So when you use the code ,be more careful!
          How often were you using the code, and were you using it from the same IP with all 3 accounts?
          Signature

          Beat the competition with better long tail keywords:

          http://keywordstreamer.com

          {{ DiscussionBoard.errors[9240224].message }}
          • Profile picture of the author easytake123
            Originally Posted by Jason Stewart View Post

            How often were you using the code, and were you using it from the same IP with all 3 accounts?
            I use code to follow 100 like 100 every day .I do it with 2 accounts from the same ip. Today i find that my another 10 banned again .So be careful !

            Did i do something wrong ?

            Ps My pinterests are not business accounts. Will it be a reason for being banned ?
            {{ DiscussionBoard.errors[9246234].message }}
            • Profile picture of the author Jason Stewart
              Originally Posted by easytake123 View Post

              I use code to follow 100 like 100 every day .I do it with 2 accounts from the same ip. Today i find that my another 10 banned again .So be careful !

              Did i do something wrong ?

              Ps My pinterests are not business accounts. Will it be a reason for being banned ?
              Strange, I follow a LOT more than that every day. Perhaps you were banned for other reasons?
              Signature

              Beat the competition with better long tail keywords:

              http://keywordstreamer.com

              {{ DiscussionBoard.errors[9247102].message }}
  • Profile picture of the author AmanBansaluk
    function pinterest_post_page_pin_no_count() { global ; /* HORIZONTAL NO-COUNTER PINTEREST BUTTON */ printf( '<div class="pinterest-posts"><a href="http://pinterest.com/pin/create/button/?url=%s&media=%s" class="pin-it-button" count-layout="none">Pin It</a><script type="text/javascript" src="http://assets.pinterest.com/js/pinit.js"></script></div>', urlencode(get_permalink()), urlencode( get_post_meta(, 'thesis_post_image', true) ) ); } add_action( 'thesis_hook_before_post_box', 'pinterest_post_page_pin_no_count' );
    Check This Code
    {{ DiscussionBoard.errors[9231216].message }}
  • Profile picture of the author Assignmentwriter
    I have no lots of images to share on pinterest , any source you people use for great images to share on pinterest
    Signature
    Prospring launch offering a 100 Million in Prizes and stacks of benefits each week.
    http://www.prospringlaunch.com/Akbar786

    {{ DiscussionBoard.errors[9231233].message }}
  • Profile picture of the author tofrar
    I did use this before but now it is not working anymore ?
    Signature

    Wan´t to Guest post on clean authority Travel blog and get tweet with your link for Only 5 USD ?
    http://www.fiverr.com/belive/guest-p...weet-your-link

    {{ DiscussionBoard.errors[9239646].message }}
    • Profile picture of the author Jason Stewart
      Originally Posted by tofrar View Post

      I did use this before but now it is not working anymore ?
      Try the jQuery version I've posted.... I've been using it daily and it still works.

      One thing that I do is count the people to follow first:

      $('.UserFollowButton').not('.dim').length

      and make sure it's not over 300.

      Then I run this code to follow them all:
      $('.UserFollowButton').not('.dim').each(function(i ) { $(this).delay(i * 1000).queue(function() {$(this).trigger('click');} )});

      Note that this uses a 1 second delay. You may want to increase it a bit if you're afraid of being banned. Myself and a few others here have had no issues with the 1 second delay, though.
      Signature

      Beat the competition with better long tail keywords:

      http://keywordstreamer.com

      {{ DiscussionBoard.errors[9240261].message }}
  • Profile picture of the author st0nec0ld
    How many of you guys got a follow back??
    Signature

    12BET | Live Casino Malaysia

    {{ DiscussionBoard.errors[9246397].message }}
    • Profile picture of the author Jason Stewart
      Originally Posted by st0nec0ld View Post

      How many of you guys got a follow back??
      In my niche, 20% have followed back. A 10-20% follow back rate is extremely common if you have nice pins on your boards.
      Signature

      Beat the competition with better long tail keywords:

      http://keywordstreamer.com

      {{ DiscussionBoard.errors[9247105].message }}
  • Profile picture of the author Pritom
    Not working for me... Undefined it says.. Please help
    {{ DiscussionBoard.errors[9254770].message }}

Trending Topics