Getting Started

Visual Studio 2010 (.Net 4.0)

  • Add a reference to the Stacky.dll located in the 'Stacky' sub folder in the release binaries
  • Add the following to your using statements in your class:

using Stacky;
  • Create an instance of the StackyClient using your Api Key

StackyClient client = new StackyClient("0.9", "<Your API Key Here>", Sites.StackOverflow, new UrlClient(), new JsonProtocol());
  • Call methods on the client

IPagedList<User> users = client.GetUsers();

Last edited Jul 3, 2010 at 6:03 AM by lfoust, version 1

Comments

No comments yet.