I am parsing a response from imgur. The below is the response that is stored as a single link.
{"data":{"id":"uzgZm0q","title":null,"description":null,"datetime":1468223393,"type":"image\/png","animated":false,"width":267,"height":189,"size":95089,"views":0,"bandwidth":0,"vote":null,"favorite":false,"nsfw":null,"section":null,"account_url":null,"account_id":0,"in_gallery":false,"deletehash":"IJbIGyD5tZFnxrJ","name":"","link":"http:\/\/i.imgur.com\/uzgZm0q.png"},"success":true,"status":200}
How can I take out the id or the link in the response?
I do not want to convert the string to JSON and then get the response. I would like to keep the response as a String itself.