[Solved] Need to parse this data with Json.NET


I solved it like this way:

var json = JObject.Parse(responseString);
Console.WriteLine(json["data"]["authentication_token"]);

solved Need to parse this data with Json.NET