Twitter:超出速率限制,推文按钮算作请求吗?
我有一个 Twitter feed,可以缓存来自 Twitter 的请求。它最多每 10 分钟获取一次 Feed(因此每小时 6 次,超出了最大限制 150 次)。
当超过速率限制时,我经常遇到问题。我能想到的唯一原因可能是网站其他地方使用的推文按钮。
使用推文按钮是否算作请求?如果是,缓存结果的最佳方法是什么?
我正在使用 json 请求: http://twitter.com/status/user_timeline/USER_ACCOUNT.json?count=2
I've got a twitter feed that caches a request from twitter. At most it gets the feed every 10 minutes (so that's 6 times an hour out of the max limit of 150).
I regularly get issues when the rate limit is exceed. The only reason I can think of that could be causing this is because of the tweet buttons used elsewhere on the site.
Does using a tweet button count as a request, and if so, what's the best way to cache the results?
I'm using the json request:
http://twitter.com/status/user_timeline/USER_ACCOUNT.json?count=2
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您想要做的就是将此请求用于您的推文按钮,我认为它没有速率限制。
http: //urls.api.twitter.com/1/urls/count.json?url=http://someLink.com&callback=twttr.receiveCount
来自 Twitter REST API 的 Twitter 链接计数
What you want to do is use this request for your tweet buttons, I don't think it's rate limited.
http://urls.api.twitter.com/1/urls/count.json?url=http://someLink.com&callback=twttr.receiveCount
Twitter Link Count from Twitter REST API