Twitter 站点流
我想使用 Twitter 网站流,但找不到使用它们的方法。没有在线 API 文档以及如何访问站点流。
有人有 php 或更好的 c# 示例吗?
是否有任何 API 示例或完整的 API 文档?
谢谢 马蒂亚斯
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我想使用 Twitter 网站流,但找不到使用它们的方法。没有在线 API 文档以及如何访问站点流。
有人有 php 或更好的 c# 示例吗?
是否有任何 API 示例或完整的 API 文档?
谢谢 马蒂亚斯
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
我打电话给 oAuth -streaming-api-client/" rel="nofollow">用户流示例。使用 dev.twitter.com 上为您生成的curl 命令来仔细检查您的 C# 生成 url。
站点流 url 隐藏在文档的顶部中间 (/2b/site.json?follow=1,2,3,4,5) @ dev.twitter.com
我也会关注 @sitestreams 以获得注意站点流重新启动。
I called oAuth before doing something similar to Shannon Whitley's user streams example. Use the curl commands generated for you at dev.twitter.com to double check your C# generate urls.
The site stream url is buried in the top middle of the doc (/2b/site.json?follow=1,2,3,4,5) @ dev.twitter.com
I'd also follow @sitestreams as well to get heads up on site stream restarts.
该 API 看起来仍处于测试阶段,我发现这个。这不是很多细节,但这篇文章是几周前发布的,所以它是相当新的东西。它使用所有 Twitter 使用的相同 REST API,因此如果您熟悉它,您应该能够使用它提供的功能。
如果您需要 Twitter 的 REST 教程 这里是一个不错的教程。它使用基本身份验证,因此我强烈建议您使用 OAuth 代替。
The API looks to still be in beta, I found this. It's not a lot of detail, but the post was only a few weeks ago so it is something pretty new. It uses the same REST API that all of twitter uses so if you are familiar with that you should be able to use what it gives you.
If you need a tutorial on REST with twitter here is a decent tutorial. It is using basic authentication so I do strongly recommend that you use OAuth instead.