0

我现在在嵌入推文的页面上收到此错误 - JsonData 实例不包含字符串 Using Linq to twitter

var embeddedStatus =
               (from tweet in ctxTwitterContext.Status
                where tweet.Type == StatusType.Oembed &&
                    tweet.ID == TweetID
                select tweet.EmbeddedStatus)
               .SingleOrDefault();         


        string html = embeddedStatus.Html;

我用谷歌搜索但没有发现他在 linq to twitter 上的错误

4

1 回答 1

2

Twitter 将 oembed 响应中的 cache_age 属性从字符串更改为 int。我刚刚更新了 LINQ to Twitter 来解决这个问题。您可以在此处查看更改并获取更新的代码:

https://linqtotwitter.codeplex.com/SourceControl/changeset/36a7d5dac9235c67dd29917e6f8ccda69aed8baa

于 2013-05-29T21:59:25.937 回答