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
Data Science 101: Using Election Tweets To Understand Text Analytics
Data Science 101: Using Election Tweets To Understand Text Analytics

To illustrate the power of text analytics in terms everyone can understand, the Pivotal Data Science team r...

Next
Going All Microservices with Spring Cloud and Pivotal Cloud Foundry
Going All Microservices with Spring Cloud and Pivotal Cloud Foundry

This is a two part episode on Spring Boot and Spring Cloud. In the first part, we discussed Spring Boot and...