- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我已经研究 Twitter 文档有一段时间了,但我在如何获取一段时间内关注者增长统计数据/一段时间内推文数量方面遇到了困难......
我想从社区了解 Twitter API 中 since_id
、 max_id
和 count
的含义。
我一直在关注此页面https://developer.twitter.com/en/docs/tweets/timelines/api-reference/get-statuses-user_timeline
我正在尝试获取用户的统计信息 --
我需要一些帮助来形成上述查询字符串..
谢谢..
最佳答案
since_id 和 max_id 都是非常简单的参数,您可以使用它们来限制从 API 返回的内容。来自 the docs :
since_id
- Returns results with an ID greater than (that is, more recent than) the specified ID. There are limits to the number of Tweets which can be accessed through the API. If the limit of Tweets has occured since the since_id, the since_id will be forced to the oldest ID available.max_id
- Returns results with an ID less than (that is, older than) or equal to the specified ID.
因此,如果您有给定的推文 ID,则可以使用这两个参数搜索较旧或较新的推文。
count
甚至更简单——它指定您想要取回的推文的最大数量,最多 200 条。
不幸的是,API 不会准确地返回您想要的信息 - 您在查询 user_timeline
时无法指定日期/时间 - 尽管您可以在使用搜索 API 时指定日期/时间。无论如何,如果您需要使用 user_timeline,那么您将需要轮询 API,收集推文,确定它们是否符合您想要的参数,然后相应地计算您的统计数据。
关于api - 'since_id' 和 'max_id' 在 Twitter API 中到底意味着什么,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6412188/
这对你们来说可能很简单,但由于我是java新手,所以我想知道实际上什么是 接下来的部分会发生什么? if (args.length > 0) { file = args[0]; } publi
在我的 View Controller 中,我将 UITapGestureRecognizer 添加到 self.view。我在 self.view 之上添加了一个小 View 。当我点击小 View
我今天尝试从 Obj-C 开始并转到 Swift,我正在阅读文档。我试图在 Swift 中创建一个简单的 IBOutlet,但它不断给我这些错误。 View Controller 没有初始化器 req
我正在尝试使用 VIM 完成(字典和当前缓冲区),但我遇到了问题?和 !在方法名称的末尾。我能以某种方式向 vim 解释方法名称(基本上是单词)最后只能有它,而且只有一个,即 method_name
我是一名优秀的程序员,十分优秀!