I use LinqToTwitter (http://linqtotwitter.codeplex.com/), but I do not know where to start with authorization. So far I have this:
var oAuth = new OAuthTwitter (); oAuth.OAuthConsumerKey ="mykey"; oAuth.OAuthConsumerSecret ="mySecret" ; string loginUrl = oAuth.AuthorizationLinkGet( "https://api.twitter.com/oauth/request_token" , "https://api.twitter.com/oauth/authorize", "", true ); var twitterCtx = new TwitterContext ();
I just need the fastest and easiest way to authorize a desktop application. I could not find much documentation.
FYI - It will not be for multiple users ... I will have one username and password that will always be used ... if this helps make it easier.
Thank you very much
source share