Today, I released LINQ to Twitter v2.1.09. Here are important new changes. Bug Fixes This is primarily a bug fix release. Most notably, there were authentication problems in WinRT apps. This is now fixed. New Features One new feature is the addition of ApplicationOnlyAuthentication for WinRT. It is fully async. Here’s how it works: var auth = new WinRtApplicationOnlyAuthorizer { Credentials = new InMemoryCredentials { ConsumerKey = "", ConsumerSecret = "" } }; if (auth != null && !auth.IsAuthorized) ......
The next version of LINQ to Twitter will be async. I’m currently doing some early spikes and everything is coming together nicely. Here’s a sample of what the syntax looks like, starting with Authorization. Here’s a standard PinAuthorizer, which allows you to authorize from console, desktop, or Windows Phone applications: async static Task TestLinqToTwitterAsync() { var credStore = new InMemoryCredentialStore { ConsumerKey = ConfigurationManager.AppSet... ConsumerSecret = ......