我正在使用Tweetinvi获取 Twitter 流,使用起来非常简单/友好,但无法将 Json 解析为 Tweet。任何人都可以帮我将 args.Json 转换/解析为 Tweet(使用 Newtonsoft.json)吗?
filteredStream.JsonObjectReceived += (sender, args) =>
{
var tweet = JsonConvert.DeserializeObject<Tweetinvi.Core.Interfaces.ITweet>(args.Json);
};
上面的行以以下错误结束,因为 ITweet 是一个接口:
Could not create an instance of type Tweetinvi.Core.Interfaces.ITweet. Type is an interface or abstract class and cannot be instantiated