我必须在任何instagram帖子中进行一些分析。如何使用C#阅读instagram帖子中的所有评论。我必须将每个注释部署在这样的对象列表中。
class InstaUser{
public string UserName{get;set;}
public List<string> Comments{get; set;}
}
如果用户进行多次通勤,则将其部署在Comments变量中,如下所示:
Dictionary<string,InstaUser> = new Dictionary<string,InstaUser>();
mydic["user1"] = new InstaUser(){
UserName = "user1",
Comments= new List(){
"comment 1",
"comment 2",
"comment 3",
"comment 4"}
}
我如何阅读Instagram帖子中的所有用户评论?