При парсе такого ответа от сервера
{"response":{"short_url":"https:\/\/vk.cc\/8CcI9Y"}}
Возникает ошибка
Вызвано исключение: "Newtonsoft.Json.JsonReaderException" в Newtonsoft.Json.dll
При парсинге запросов не содержащих сслыки все нормально, использую VK API
Код для расшифровки заппроса
public Dictionary<string, string> URLShorter(string URL)
{
HttpRequest URLShorter = new HttpRequest();
URLShorter.AddUrlParam("url", URL);
URLShorter.AddUrlParam("access_token", _Token);
URLShorter.AddUrlParam("version", "5.92");
string Result = URLShorter.Get(__VKAPIURL + "utils.checkLink").ToString();
Dictionary<string, string> Dist = JsonConvert.DeserializeObject<Dictionary<string, string>>(Result);
return Dist;
}