I created a windows application and add the reference for tweetinvi dll and post a message in twitter. Its working fine, but i need to post a message in twitter using OAUTH instead of using tweetinvi. I used the following code:
TwitterCredentials.SetCredentials(AccessToken, AccessTokenSecret, ConsumerKey, ConsumerSecret);
var newTweet = Tweet.CreateTweet("Hello");
newTweet.Publish();
Please help me !!!