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?
var newTweet = Tweet.CreateTweet(message);
var result = newTweet.PublishInReplyTo(tweetId);
The result is returned as false. Is there a way to figure out why?