Ruby Twitter Gem,检查特定用户的费率限制

时间:2016-07-26 12:41:54

标签: ruby twitter-gem

我正在尝试使用Twitter Gem获取特定用户的x-rate-limit-remaining。这是我的代码:

@client = Twitter::REST::Client.new do |config|
  config.consumer_key        = "KEY"
  config.consumer_secret     = "SECRET"
  config.access_token        = "TOKEN"
  config.access_token_secret = "SECRET"
end

当我尝试获取@client.user(user).followers_count@client.user(user).created_at.strftime("%Y-%m-%d")时,我没有问题。

然而,当我尝试@client.user(user).remaining时,它会告诉我<undefined method remaining for #<Twitter::User id=18118102>我明白班级可能不是好的但是我无法获得逻辑...顺便说一句,我完全是Ruby的新人。

谢谢!

0 个答案:

没有答案