Good looking library, but it's misbehaving for me..
I've created a twitter app, with read/write permissions, and that all seems good.
I was working with full lifecycle oauth management, but am now using the "Access token secret" and "Access token: generated within twitter on the app admin page.
My code is here
https://gist.github.com/2892292
var tokens = new OAuthTokens
{
AccessToken = [MyAccess],
AccessTokenSecret = [MySecret],
ConsumerKey = ConsumerKey,
ConsumerSecret = ConsumerSecret
};
var verify = TwitterAccount.VerifyCredentials(tokens);
Its dead simple code, but is returning a 'Twitterizer.RequestResult.Unauthorized' for the result object..