TweetSharp を使用していますが、「検索」機能を使用できません。私はそれを見つけようとしましたが、私が見たすべての例で、2 番目のパラメーターは整数であり、機能しません。
TwitterService service = new TwitterService(consumerKey, consumerSecret);
service.AuthenticateWith(accessToken, tokenSecret);
var options = new SearchOptions { Q = "stackoverflow" };
XmlDocument xmlTwitterPost = new XmlDocument();
xmlTwitterPost.Load(@"c:\socialShare.xml");
xmlTwitterPost.LoadXml("<TableBox></TableBox>");
foreach (var tweet in service.Search(options,))
{..
}
次の 2 番目のパラメーターを挿入する方法が見つかりません。
System.Action<TweetSharp.TwitterSearchResult,TweetSharp.TwitterResponse>
誰でも私を助けることができますか?