使用 twitter API 聚合多个特定的 Twitter feed?
我是一名中级程序员,几乎没有网络经验。我有一个关于 iPhone 应用程序的想法,并试图弄清楚它是否是一个可行的项目。
我正在考虑构建一个应用程序,将某些特定的 Twitter 提要分组到一个应用程序中。我想知道以前是否有人这样做过,以及是否可以使用 twitter API 检索特定推文而无需用户登录。
用户不会以任何方式回复或响应链接,而是只是打开链接。
谢谢。
杰米
I am an intermediate level programmer with almost no web experience. I have an idea for an iPhone app and am trying to figure out if it is a feasible project to pursue.
I am thinking of building an application that groups certain specific twitter feeds together into an app. I am wondering if anyone has done this before, and if it is possible to use the twitter API to retrieve specific tweets without having a user have to log in.
The user will not be replying to or responding in any way to the links, rather just opening the links.
Thanks.
Jamie
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
无需用户授权其帐户即可检索任何公共 Twitter 源。然而,您通常只能获取一定数量的过去的推文。例如,这会返回有关用户及其最近推文的信息,只需将“screen_name =”替换为您要查找的任何名称
即可在Twitter API 文档。
Any public twitter feeds can be retrieved without a user authorizing their account. However you can usually only get a certain amount of tweets into the past. For instance this returns info about a user and their most recent tweets, just replace "screen_name=" with whatever name you are looking for
More can be found at the Twitter API documentation.