in lib/twurl/app_only_oauth_client.rb [20:27]
def exchange_credentials_for_access_token
response = fetch_oauth2_token
if response.nil? || response[:access_token].nil?
raise Exception, AUTHORIZATION_FAILED_MESSAGE
end
@bearer_token = response[:access_token]
end