Whos working on Pinterest bot ??

FreashCoast

Junior Member
Joined
Oct 6, 2011
Messages
176
Reaction score
90
Pinterest works exactly like twitter with following and followers. Pinterest does not have any limits in place at this time , so this is dream come true for us.
Consider pinterest got more traffic then google + last month , and is in the top 10 websites online.....

someone create the first pinterest bot and you have the potential to become rich with traffic :D:D:D
 
Need an invite to join up.....looks like from freaky mashup of Craigslist, Tumblr and Twitter.
Will wait until I get me invite through and take a look at the bot potential :)
 
the best part about pinterest is that its 80% females , so you know what that means....they buy half of the shit they see on there lol big market of perfect buyers

WE NEED A BOT
#TeamBHW
 
the best part about pinterest is that its 80% females , so you know what that means....they buy half of the shit they see on there lol big market of perfect buyers

WE NEED A BOT
#TeamBHW

As soon as I get on there I will be putting a few bots together, see how well it goes. You never know, this could be my first IM earner :D
 
I'm currently working on one. What are some thing you would like it to do?
 
nice ! making a bot now as well, well soon find out whether they have limits or not ! this could work out great with one of my coupon sites.
 
Very interested in some Pinterest bots...If someone need an invite to make this happen, let me know!
 
I'd like to automate some of this stuff with Zennoposter but I don't have an invite so I can't.
 
I can supply invites if any of you are interested in checking it out.

If you're interested, send me a PM and we'll sort it out. :)
 
I still learning about Pinterest in the eyes of marketer, bot surely in my plan.

Don't have Pinterest account, PM me and I invite you for free.
 
Me and my friend programmed a bot together...

It seems to virtually lose all of its bang last night. Not sure what happened, maybe Pinterest had an update or something.

pinterest.png


I made the bot automatic and threw it on my VPS for these last two days.

It says 0 likes but really there were TONS of likes an repins. This is also only one (pinterest)account out of five. But I was getting a lot more repins and likes yesterday than today...but the pins are still being put on successfully.
 
Last edited:
Maybe it will be usefull for someone, php script that download all images from pinterest populars every 5 minutes (every time checks if image isnt allready downloaded):
HTML:
<html><head><meta http-equiv="refresh" content="300"></head><body>
PHP:
<?php
set_time_limit(0);
function SaveCurlPage ($url, $save_file, $cookie) {
    $ch = curl_init($url);
    curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
    curl_setopt($ch, CURLOPT_REFERER, $url); // need to fake a referer
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
    curl_setopt($ch, CURLOPT_BINARYTRANSFER, 1);
    curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
    curl_setopt($ch, CURLOPT_COOKIEJAR, $cookie);
    curl_setopt($ch, CURLOPT_COOKIEFILE, $cookie);
    $tmp = curl_exec ($ch);
    if(curl_errno($ch) == 0) {
        file_put_contents($save_file, $tmp);
    }
    curl_close ($ch);
   }

$url = 'not allowed (pinterest popular url)';
$agent= "Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0)";
$cookiefile = tempnam("ciastka", uniqid());
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL,$url);
curl_setopt($ch, CURLOPT_USERAGENT, $agent);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt($ch, CURLOPT_TIMEOUT, 60);
curl_setopt($ch, CURLOPT_COOKIEFILE, $cookiefile);
curl_setopt($ch, CURLOPT_COOKIEJAR, $cookiefile);
$result = curl_exec($ch);
curl_close ($ch);
$wzor = '/media-cdn.pinterest.com\/upload\/([A-Za-z0-9_]*).jpg/';
preg_match_all($wzor, $result, $wynik);
$images = $wynik[1];
foreach ($images as $image) {
    $image .= '.jpg';
    $path = 'not allowed to pust urls' . $image;
    if (!file_exists($image)) {
        SaveCurlPage($path, $image, $cookiefile);
    }
}
?>
HTML:
</body></html>
it's recommended to make dir "ciastka" for cookies files.
replace 'not allowed to pust urls' to media-cdn pinterest com / upload /
. after cdn and before com
http : / / before media-cdn
 
Last edited:
We don't have any bots made up yet for public use but we are selling Pinterest accts.....it's gonna be big! Looks like P is gonna be the next big social move...
 
What bots do you want?
I have put some in the download section of the forum for free, as well as a few others.
 
Hi fatboy,
I saw someone generate a load of unique joining links/accounts. Is there anything out there yet to say create bulk accounts i.e 1 accounts has 10 invites and they create accounts and invites come from them, with profile picture.

You have the mass follower/unfollower and also liker? Is that done by targeted category liking.

I've used the script to download popular images. Looking for some form of pin uploader:
Upload, Add tags, Change category and add a link to images.

Just a few ideas that i will be looking to get developed, you know the general bots for any social networking site. Just theres very few limitations on here at the moment.

Think female targetted 97% of the users are female right? :)

Thanks,
J
 
Back
Top