Skip to content

Instantly share code, notes, and snippets.

@thiagoa
Created October 5, 2016 13:15
Show Gist options
  • Save thiagoa/63e409e5c5da7e679e8ceef303402148 to your computer and use it in GitHub Desktop.
Save thiagoa/63e409e5c5da7e679e8ceef303402148 to your computer and use it in GitHub Desktop.
Twitter Timeline Hub call method rescuing forbidden exception
def call(user, count: 20)
tweets = fetch_user_timeline(user, count: count)
Result.new(:ok, tweets)
rescue Twitter::Error::NotFound
Result.new(:not_found, [])
rescue Twitter::Error::Unauthorized
Result.new(:forbidden, [])
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment