Twitter - 最喜欢一条推文?

发布于 2024-11-06 04:00:46 字数 601 浏览 1 评论 0原文

我让 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 技术交流群。

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

发布评论

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

评论(2

淤浪 2024-11-13 04:00:46

你尝试过这个吗?

function Like(ScreenName, TweetID)
{
    client.rest.post('favorites/create', { screen_name: ScreenName, id: TweetID});
}

JavaScript 中类似这样的东西。

Did you try this?

function Like(ScreenName, TweetID)
{
    client.rest.post('favorites/create', { screen_name: ScreenName, id: TweetID});
}

Something like this in JavaScript.

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