I have this small code on c# .NET which publish tweets and shows timeline of twitter using tweetinvi . And I'd like to autoupdate timeline whenever the tweet is sent. Can anyone advice how to do it with event? Thanks for answers.
private void button1click(object sender, EventArgs e)
{
if (richTextBox1.Text != "")
{
Tweet.PublishTweet(richTextBox1.Text);
MessageBox.Show("Your tweet was sent!", "Important Message");
}
else
{
MessageBox.Show("You need to write something!", "Important Message");
}
}
private void Timeline_GetHomeTimeline(object sender, EventArgs e)
{
var loggedUser = User.GetLoggedUser();
string x = "";
var homeTimelineTweets = loggedUser.GetHomeTimeline();
foreach (var tweet in homeTimelineTweets)
{
x += tweet.Text + Environment.NewLine;
}
richTextBox2.Text = x;
}
First of all please note that it is a very bad practice to make several calls
User.GetLoggedUser();
. The reason being that the endpoint is limited to 15 requests every 15 minutes (1 per minute).If the user happens to publish more than 15 tweets in 15 minutes, your code will break.
Now you have multiple solutions to solve the problem, but the best one is the
UserStream
(solution 1).Solution 1
I would suggest to add the following code in the
Initialized
event.Solution 2
If you do not need to reload your
Timeline
each time the user publishes a tweet but you do need the new tweet to be displayed use the following solution.Solution 3
Update your
timeline
if a tweet has been published successfully.NOTE Please note that I have never had the need to retrieve the
LoggedUser
at any point. Most of the time aLoggedUser
should be retrieved once and then used across your app.Also please note that I am the main developer of Tweetinvi.