As discussed in https://tweetinvi.codeplex.com/discussions/554135
Here are the solutions you could use:
Linvi
Here are the solutions you could use:
// From any account if you do not already have a sample stream running on your machine + accountvar stream = Stream.CreateSampleStream(); stream.TweetReceived += (sender, args) => { var lastPublishedTweetId = args.Tweet.Id; stream.StopStream(); }; // From another test account so that is does not "corrupt" the account profilevar tweet = Tweet.PublishTweet(Guid.NewGuid().ToString()); var lastPublishedTweetId = tweet.Id; tweet.Destroy();