Hi,
A solution has been implemented in Tweetinvi 0.9, it might be improved in the future but I think you can play with it.
Keep in mind that this is using the Search API of twitter as there is no other way to get this information.
It means that some replies could have not been returned by the search and consequently not sent back to Tweetinvi.
To get is just download the Development version from the Source Code.
Sincerely,
Linvi
A solution has been implemented in Tweetinvi 0.9, it might be improved in the future but I think you can play with it.
var tweet = Tweet.GetTweet(xxx);
var directReplies = Search.SearchDirectRepliesTo(tweet);
var tweet = Tweet.GetTweet(xxx);
bool getRecursiveReplies = true;
var allReplies = Search.SearchRepliesTo(tweet, getRecursiveReplies);
Please let me know if you are happy with the implementation and the results.Keep in mind that this is using the Search API of twitter as there is no other way to get this information.
It means that some replies could have not been returned by the search and consequently not sent back to Tweetinvi.
To get is just download the Development version from the Source Code.
Sincerely,
Linvi