views:

31

answers:

1

I created a bot to retweet one of my status in twitter... i used the api @ http://github.com/abraham/twitteroauth

$connection->post('statuses/retweet/'. $result->id);

i can retweet my tweet successfully but when i check tweet mentioning me, it doesn't list the tweet by that bot

+1  A: 

Retweets are not shown in mentions since the original tweet will already be listed. You can view the original tweet and see that it is retweeted or you might want to look at http://dev.twitter.com/doc/get/statuses/retweets_of_me

abraham
ya thanks... i didn't notice that
Akhil K Nambiar