Skip to content

Instantly share code, notes, and snippets.

@BillKeenan
Created June 8, 2012 21:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save BillKeenan/2898108 to your computer and use it in GitHub Desktop.
Save BillKeenan/2898108 to your computer and use it in GitHub Desktop.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Twitterizer;
namespace TwitterTEst
{
class Program
{
static void Main(string[] args)
{
const string ConsumerSecret = "soMeQmPjLaJboqPgFbgsgw";
const string ConsumerKey = "xkng59aCQEgKJ9gt4FnqOyWpHoWg2Ej6xOfG2k0r6U";
var tokens = new OAuthTokens
{
AccessToken = "602242733-iHUjLEa9XRi1lNNevD2qB1povBxK7D8MWmr79Hs",
AccessTokenSecret = "iSnhm7cq1HxwZDh0wp1G577F9O1McQH95vXWrUR0sk",
ConsumerKey = ConsumerKey,
ConsumerSecret = ConsumerSecret
};
var verify = TwitterAccount.VerifyCredentials(tokens);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment