I'm trying to use the goo.gl API to shorten some link. The problem is that I do not know how to pull the generated URL from the json return. See below how it is organized:
{
"kind": "urlshortener#url",
"id": "AQUI VEM A URL DO GOOGLE",
"longUrl": "http://url-dos-detalhes/"
}
And I need to get only the id of json
in my controller using C #. I'm using the MVC concept in ASP.NET.