The GoGrid API SDK is a managed .NET API which wraps the GoGrid REST API. The GoGrid API SDK is available as a NuGet package, simply issue the following command at the Package Manager console to get started:
Once the installation is completely you can start using the API by creating an instance of the Connection class and calling the various methods on it:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using GoGrid;
namespace ListImagesDemo
{
public class Program
{
public static void Main(string[] args)
{
var connection = new Connection("apikey", "secret");
var images = connection.ListImages();
foreach (var image in images)
{
Console.WriteLine("{0} {1}", image.Location, image.FriendlyName);
}
}
}
}
If you encounter any problems
please log and issue.