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);
Posted
7-3-2011 12:14
por
Bruno Figueiredo