How to do auto twitts?

luizeba

Regular Member
Joined
Dec 24, 2008
Messages
489
Reaction score
198
Hello mates...

I want a tool who allow me to set some daily twitts (about 5) and let the bot do it for me...

I was using http://futuretweets.com/, but they disabled the 'recurring tweets' due a Twitter Team E-mail to them...

Where I can find a service like this one?

Thanks!
 
If anyone has a script you can run yourself, I'd love you for sharing it to me, I might try and code one myself one day :)
 
Luizeba i know..damn shame..futuretweets was the best.....however i checked hootsuite and socialoomph but they dont have recurring daily tweet function
Posted via Mobile Device
 
If anyone has a script you can run yourself, I'd love you for sharing it to me, I might try and code one myself one day :)

Sure here you go
PHP:
<?php 

$username = "YOUR USERNAME HERE";
$password = "YOUR PASSWORD HERE";

$title = "YOUR TITLE HERE",
$link = "YOUR DESIRED LINK HERE";

$tweet = $title $link;

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "http://twitter.com/statuses/update.xml");
curl_setopt ($ch, CURLOPT_USERAGENT, "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.6) Gecko/20070725 Firefox/2.0.0.6");
curl_setopt ($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt ($ch, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, "status=$tweet");
curl_setopt($ch, CURLOPT_USERPWD, $username.':'.$password);
            
$output = curl_exec ($ch);
echo $output;
curl_close($ch);

?>
 
You could probably try a php 5 script like this that has a custom tweet option but it's not automated.
Code:
http://tweetdrive.com
 
try socialoomph ,ive been working with them for a long time but aweek ago 500 of my account got suspended ,be careful.

500 accounts is a LOT of accounts.
How did u get suspended?
were u doing anything tat we should know so that we can avoid it?
 
i was thinking of switching to tweetlater but ive heard this kinda suspension from other users also ,it would be great if you could share more info about this suspension.
 
TweetAdder has functionality for running a text file of tweets, posting them at variable rates of delay between posts.

It's also good if you mix that in with a few headlines. Grab an rss feed from your own blog or someone elses, or a news site, funnel them through ping.fm and output to twitter. Then you'll have some targeted, automated content to fill in the gaps between your posts of trying to sell some product or service.
 
Back
Top