Twitter - 最喜欢一条推文?
我让 Aouth 为 Twitter 工作,并拉入推文流,我试图找出如何收藏来自推文流的其中一条推文。
我了解 Twitter 的 API 给我这个: 参数: * ID。选修的。为其请求收藏夹状态列表的用户的 ID 或屏幕名称。 o 示例: http://api.twitter.com/1/favorites/bob.json< /a> 或 http://api.twitter.com/1/favorites/bob.rss * 页。选修的。指定要检索的收藏夹页面。 o 示例: http://api.twitter.com/1/favorites.xml? page=3
但这并不能真正帮助我尝试实现,或者我只是不确定如何实现它
有帮助吗?
I have Aouth working for Twitter, and pulling in a stream of tweets, I am trying to figure out how to then Favorite one of the Tweets coming in from the stream.
I understand twitter's API give me this:
Parameters:
* id. Optional. The ID or screen name of the user for whom to request a list of favorite statuses.
o Example: http://api.twitter.com/1/favorites/bob.json or http://api.twitter.com/1/favorites/bob.rss
* page. Optional. Specifies the page of favorites to retrieve.
o Example: http://api.twitter.com/1/favorites.xml?page=3
But that doesn't really help me in trying to implement, or I just am not sure how to approach it
Any help ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 Twitter 开发网站上发布收藏夹/创建
POST favorites/create on twitter development site
你尝试过这个吗?
JavaScript 中类似这样的东西。
Did you try this?
Something like this in JavaScript.