LinqToTwitter - IsAuthorized always returns false for ApplicationOnlyAuthorizer
I have an MVC4 web application that uses LinqToTwitter to display Tweets when a user's profile page is visited, if they have a Twitter handle. For this I use ApplicationOnlyAuthorizer: var auth = new ApplicationOnlyAuthorizer { Credentials = new InMemoryCredentials { ConsumerKey = "twitterConsumerKey", ConsumerSecret = "twitterConsumerSecret" } }; auth.Authorize(); My problem is that I have found that auth.IsAuthorized always returns false, even when I have call Authorize() and am successfully able to make calls to Twitter. And also, I have found that if I call Authorize() in every call made