Module: Twitter::REST::Undocumented
Constant Summary
Constants included from Utils
Twitter::REST::Utils::DEFAULT_CURSOR
Instance Method Summary collapse
- #following_followers_of(*args) ⇒ Twitter::Cursor
-
#tweet_count(url, options = {}) ⇒ Integer
Returns Tweets count for a URI.
Methods included from Utils
Instance Method Details
#following_followers_of(options = {}) ⇒ Twitter::Cursor #following_followers_of(user, options = {}) ⇒ Twitter::Cursor
Note:
Undocumented
26 27 28 |
# File 'lib/twitter/rest/undocumented.rb', line 26 def following_followers_of(*args) cursor_from_response_with_user(:users, Twitter::User, "/users/following_followers_of.json", args) end |
#tweet_count(url, options = {}) ⇒ Integer
Note:
Undocumented
Returns Tweets count for a URI
38 39 40 |
# File 'lib/twitter/rest/undocumented.rb', line 38 def tweet_count(url, = {}) HTTP.get("https://cdn.api.twitter.com/1/urls/count.json", params: .merge(url: url.to_s)).parse["count"] end |