Is there a way to check if a twitter username exists? Without being authenticated with OAuth or the twitter basic authentication?
This worked for me, close to what sferik has posted.
def twitter_user_exists?(user) Twitter.user(user) true rescue Twitter::Error::NotFound false end