I have to retrieve id = "217331368373746" from below Link: please copy below link then paste in web address:https://graph.facebook.com/191746304265586?fields=albums.limit(1).fields(id)\[code\]var jsonalbum = Retrivedata("https://graph.facebook.com/191746304265586?fields=albums.limit(1).fields(id)"); foreach (var objalbum in jsonalbum["albums"]) { //here what code }public dynamic Retrivedata(string query){ var request = WebRequest.Create(query); var twitpicResponse = (HttpWebResponse)request.GetResponse(); var reader = new StreamReader(twitpicResponse.GetResponseStream()); JavaScriptSerializer js = new JavaScriptSerializer(); return js.Deserialize<dynamic>(reader.ReadToEnd());}\[/code\]