Как десериализовать массивы json из url-адреса в C# ?
Я пытался десериализовать данные json из url wordpress, но ничего не вышло.
Я видел много учебников, но никто не работал над моим !
Это мой адрес : https://mahdii.000webhostapp.com/?wpapi=get_posts& amp; amp; dev=1[^]
Я получаю Null в var serialized_post.
Пожалуйста мне нужна помощь
Что я уже пробовал:
Я попытался десериализоваться с помощью этого кода :
string json = new WebClient ().DownloadString("https://mahdii.000webhostapp.com/?wpapi=get_posts&dev=1");
Приставка.WriteLine(json);
var deserialize_post = JsonConvert.DeserializeObject & lt;List<mycontainer>> (json);
мой класс:
namespace App8 { public class Author { public string id { get; set; } public string slug { get; set; } public string name { get; set; } public string first_name { get; set; } public string last_name { get; set; } public string nickname { get; set; } public string url { get; set; } public string description { get; set; } public string gravatar { get; set; } } public class Post { public string id { get; set; } public string type { get; set; } public string slug { get; set; } public string url { get; set; } public string status { get; set; } public string title { get; set; } public string title_plain { get; set; } public string date { get; set; } public string modified { get; set; } public string excerpt { get; set; } public string parent { get; set; } public List<object> category { get; set; } public List<object> tag { get; set; } public List<Author> author { get; set; } public string comment_count { get; set; } public string comment_status { get; set; } } public class MyContainer { public List<Post> posts { get; set; } } }