I am using TweetSharp Api and I have some problems concerning the service.GetRequestToken().
here's my code:-
TwitterService service = new TwitterService("######", "######");
OAuthRequestToken requestToken = service.GetRequestToken();
Uri uri = service.GetAuthorizationUri(requestToken);
Process.Start(uri.ToString());
The problem is that when I'm redirected to the Twitter authorization window this message is come :-
Whoa there!
The request token for this page is invalid. It may have already been used, or expired because it is too old. Please go back to the site or application that sent you here and try again; it was probably just a mistake.
the uri is like :
https://api.twitter.com/oauth/authorize?oauth_token=?
any help ?
thanks in advance.