异步 Twitter 搜索

发布于 2024-10-14 11:43:46 字数 284 浏览 1 评论 0原文

我正在为大学做一些关于 twitter 的研究,并尝试用 C# 创建一个简单的 twitter 流应用程序或搜索应用程序,具有异步功能,即我需要在新结果可用时更新屏幕上的结果。

我是否正确地说流 api 返回比搜索更多的详细信息。流媒体返回详细信息,例如关注者数量、朋友、帐户创建日期等,而搜索返回的信息很少?使用搜索方法可以返回更多详细信息吗? 由于我为流和搜索编写了很多代码,并且有写入屏幕和数据库的代码,所以我还不会发布任何内容,所以我想我想知道有人知道解决我的困境的最佳方法吗?!?

非常感谢任何帮助,并提前致谢。

I am doing some research on twitter for college and am trying to create a simple twitter streaming app or search app in c# with asychronous capabilities i.e. I need to update the results on screen as new results are available.

Am I correct in saying that the streaming api returns much more detail than the search. Streaming returns detail such as the number of followers, friends, account creation date etc while the search returns very little? Can more detail be returned using the search method?
As I have alot of code written for both stream and search and have code that writes to the screen and DB i wont post anything yet, so i guess i am wondering has anyone any idea of the best way to approach to my predicament?!?

Any help at all is much appreciated and thanx in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

邮友 2024-10-21 11:43:46

是的,当推文离开端点时,流式 API 会返回完整的推文有效负载(包括嵌入的用户对象),而搜索 API 将在其中返回其独特的结果。就我个人而言,我收听 statuses/filter 端点并使用 REST API 回填任何丢失的推文。

Yes, the streaming API returns the full tweet payload (including the embedded user object) as the tweets come off the endpoint, where the search API returns its unique flavor of result. Personally, I listen to the statuses/filter endpoint and backfill any missed tweets using the REST API.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文