I am using the following code using TweetSharp Library in c#.
service = new TwitterService(twitterAccount.ConsumerKey, twitterAccount.ConsumerSecret);
// Step 1 - Retrieve an OAuth Request Token
OAuthRequestToken requestToken = service.GetRequestToken();
// Step 2 - Redirect to the OAuth Authorization URL
Uri uri = service.GetAuthorizationUri(requestToken);
var result = Process.Start(uri.ToString());
I am able to redirect and to authorized page and able to give user name and password for authentication.
What do we need to do to get access token for this user?
Thanks in advance.