c# - Finding the tweetID of a tweet in tweetinvi -
i relatively new programming in c# (learning on own school project) , decided try using tweetinvi implement twitter functionality. far it's going good, got authentication , publishing , running, i'm struggling find out how use destroytweet() method. it, , many other methods takes tweetid parameter, can't figure out of how find specific tweet.
using following code publish tweet, how can find tweetid of tweet?
public itweet publishtweet(string text) { return tweet.publishtweet(text); } // snippet test method in main class. twitter.twitteruser.publishtweet(system.console.readline()); // still working on gui using readline now.
it's easy solution, can't figure out! in advance.
simple solution. explained before need take tweet publishtweet
.
string text = "text"; itweet tweet = tweet.publishtweet(text); bool destroysuccess = tweet.destroy();
Comments
Post a Comment