Best Buy Remix C# library available

February 1, 2009 Pivotal Labs

Omar is on fire. Just a few days after publishing his Guide to creating a Google App Engine / Remix API / Facebook app, he’s released Remix.NET, a C# wrapper for the Best Buy Remix API.

Code sample:

Using Remix;

Product p = null;
try
{
    Server remix = new Server("username", "password");
    String filter = "iphone";
    String postalcode = "94102";
    String radius = "25";
    bool tersemode = true;
    int pagenum = 0;

    // Get all Hardgoods that match "iphone" in the name attribute and
    // are in stores in the 94102 area code in a 25 mile radius.
    // When "tersemode" is true, only return a handful of information.
    // (See method signature for details.)
    Products list = remix.GetHardGoods(filter, tersemode, pagenum, postalcode, radius);

    if (list.Count > 0) p = list[0];
}
catch (Exception e)
{
}
return p;

About the Author

Biography

Previous
How To Create a Fluid Application for Pivotal Tracker
How To Create a Fluid Application for Pivotal Tracker

As a developer of web apps, I'm inevitably running 3 or 4 browsers, each with 10 tabs open containing my ...

Next
New Pivotal Tracker features
New Pivotal Tracker features

We've rolled out some new features in Pivotal Tracker. New API Version There's a new version of the devel...