What would be the query to get the last 50 tweets from a given user (Ex:@Microsoft) using LinqToTwitter library?
I am authenticating as SingleUser since I was not able to authenticate with the application authentication.
var auth = new SingleUserAuthorizer()
{
Credentials = new SingleUserInMemoryCredentials()
{
ConsumerKey = "Key"
, ConsumerSecret = "Key"
, TwitterAccessToken = "Key"
, TwitterAccessTokenSecret = "key"
}
,
AuthAccessType = AuthAccessType.Write
};