I had the above mentioned working before and all of a sudden it has stopped. My code for replying to the tweet is as follows:
var newTweet = Tweet.CreateTweet(message);
var result = newTweet.PublishInReplyTo(tweetId);
The result is returned as false. Is there a way to figure out why?
Comments: ** Comment from web user: iserialize **
var newTweet = Tweet.CreateTweet(message);
var result = newTweet.PublishInReplyTo(tweetId);
The result is returned as false. Is there a way to figure out why?
Comments: ** Comment from web user: iserialize **
So the suspension got removed after 24 hours. I think what happened was that i was replying to a number of tweets simultaneously and Twitter assumed i was spamming. I have reworked my code to queue my responses and send them one by one which hopefully will prevent this from happening.