Goo.gl Url Shortener API Wrapper
Just for the fun, there's a Goo.gl Url Shortener API wrapper on my codeplex corner.
var service = new GooglUrlShortenerService();
GooglErrorResponse error = null;
var url = service.GetShortUrl("www.google.com", out error);
Console.WriteLine(url.Id);
var details = service.GetShortUrlDetails(url.Id, out error);
Console.WriteLine(details.Created);
GooglErrorResponse error = null;
var url = service.GetShortUrl("www.google.com", out error);
Console.WriteLine(url.Id);
var details = service.GetShortUrlDetails(url.Id, out error);
Console.WriteLine(details.Created);
Smell you later!
Posted
by Bruno Figueiredo
Leave a comment...