Any tool to make tweets ?

Sauron is Here

Junior Member
Joined
Jun 10, 2009
Messages
126
Reaction score
12
Hello Guys

I'm looking for any tool, free if possible that can help me to make tweets from articles ot txt files .... anyone knows how can i generate my own tweets as i need to make as much as i can ...

I have tweetattacks already but it doesn't work for me i need something else...

Thanks for your help !
Sauron.
 
Hello Guys

Thanks for your replies...
What i need is a way to create my own tweets?
i.e: Tweets for different niches, lets say Internet Marketing, weight Loss and so on...

I don't know how to create them in mass i need many in different niches so i though i can use some plr articles i have, but i don't know how to make generate them .....:(

Thanks for your help !
Sauron.
 
That looks like the perfect work for TweetAttacks, but what's your problem with it?
 
That looks like the perfect work for TweetAttacks, but what's your problem with it?

Perhaps i don't know how to generate tweets with the generate tweets option ? Everytime i put a file then it generate duplicates and long tweets, i make them short with the other option but they don't make any sense...

Will be much appreciated if you can explain how to generate tweets with tweetattacks ....

Thanks,
Sauron.
 
You can ask at the official forum, there it's the creator of TweetAttacks, or you can also check the manual where everything is very well explained.
 
I recommend using ZennoPoster. You can use it not only for posting tweets but for all kind of stuff. You Tweeter should be an easy task with ZennoPoster.
 
I use Zenno Poster to scrap and make unique tweets. You should also try it out. It's easy as long as you manage to understand how it works
 
<?

$username = 'myUserName';
$password = 'myPassword';
$status = urlencode(stripslashes(urldecode('This is a new Tweet!')));

if ($status) {
$tweetUrl = 'http://www.twitter.com/statuses/update.xml';

$curl = curl_init();
curl_setopt($curl, CURLOPT_URL, "$tweetUrl");
curl_setopt($curl, CURLOPT_CONNECTTIMEOUT, 2);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($curl, CURLOPT_POST, 1);
curl_setopt($curl, CURLOPT_POSTFIELDS, "status=$status");
curl_setopt($curl, CURLOPT_USERPWD, "$username:$password");

$result = curl_exec($curl);
$resultArray = curl_getinfo($curl);

if ($resultArray['http_code'] == 200)
echo 'Tweet Posted';
else
echo 'Could not post Tweet to Twitter right now. Try again later.';

curl_close($curl);
}

?>
 
Back
Top