适用于 iPhone 的 Twitter API?
我想将我的应用程序与 Twitter 集成。我需要显示包含某些主题标签或来自特定用户的推文。
我尝试了 MGTwitterEngine+xOAuth,但我只想要 twitter 推文,因此不需要身份验证。 MGTwitterEngine+xOAuth 需要身份验证,因此任何 API 或方法都可以获取特定主题标签或来自特定用户的推文。
I want to integrate my app with twitter. I need to show tweets containing certain hashtags or from a particular user.
I tried MGTwitterEngine+xOAuth
, but i want twitter tweets only so no need of authentication required. MGTwitterEngine+xOAuth
needs authentication so any API or method to get tweets certain hashtags or from a particular user.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你是对的,你不需要 xOAth 来根据 twitter 搜索 API 进行搜索。
如果您想使用 MGTwitterEngine,您可以使用以下方法之一:
您可以在 MGTwitterEngine.h 中找到更多详细信息。看来你不必设置身份验证参数来进行搜索,你只需要创建一个引擎:
twitterEngine = [[MGTwitterEngine alloc] initWithDelegate:self];
you are right, you don't neeed xOAth to make a search according to twitter search API.
If you want to use MGTwitterEngine you can use one of those methods :
You can find more details in MGTwitterEngine.h. It seems that you don't have to set authentification parameters to make a search, you just have to create an engine :
twitterEngine = [[MGTwitterEngine alloc] initWithDelegate:self];
您可以将 MGTwitterEngine 与搜索 api 结合使用,也可以直接调用 twitter 搜索 API 。搜索 API 的问题是您只能获取最多 14 天的推文。它可以像这样简单: http://search.twitter.com/search.json ?q=%23你好
You can use MGTwitterEngine with search api or you can call twitter search API directly. The problems with search API is that you can only get tweets up to 14 days old. It can be as easy as: http://search.twitter.com/search.json?q=%23hello