Use SMS, automated calling, or a local app to receive dynamic codes for secure login, payment transactions, and more.
Protects enterprise files
Secures source code
Box adds a layer of security to protect documents and data stored by users. An out-of-band SMS is sent to a user's phone after login to make sure account access is protected.
Watch VideoTalk to Sales
GitHub safeguards account logins. On login, a one-time code is sent to a user's mobile device via SMS to prevent malicious activity and account takeover in case a primary password has been exploited.
Talk to Sales
Eliminate unauthorized access by integrating 2FA (Two-Factor Authentication). Both primary password and user's mobile phone are needed to properly authenticate and get access.
Deliver a one-time code via SMS to a user's personal mobile phone or automated call to a landline.
Send password reset requests within the app's 2FA workflow. Reduce the time it takes locked-out users to regain access.
Send one-time security passcodes to a user's phone.
Use text-to-speech as a failover or alternative delivery method.
Employ a 5-digit short code to ensure fast delivery at scale.
Utilize a ready-made 2FA solution to augment usernames and passwords.
Detailed status information is provided about message delivery, allowing automated failover delivery logic for security passcodes. Send failover messages through text-to-speech or SMS.
Integrate second-factor authentication into any login or registration workflow in any programming language. Customize the user experience with your design and security requirements.
Give users multiple ways to authenticate with global SMS, phone call verification, and an app for every major mobile and desktop OS. Use Authy as an end-to-end solution or build a custom solution.
Deliver messages to mobile phones anywhere in the world and localize communication with SMS in any written language. Use text-to-speech (TTS) in twenty-six dialects.
Send security tokens in a text and/or phone call without upfront investments. Pay per-minute for phone calls and per message for SMS.
Out-of-the-box, two-factor authentication solutions with Authy offer full 2FA services with SMS, voice, Soft Token, and Push authentication as well as multi-device support.
$client = new Services_Twilio($accountsid, $authtoken);
// Prepare the message with the password embedded
$content = "Your passcode is ".$passcode
$method = ($method == "sms") ? "sms_messages" : "calls";
// Send the message via SMS or Voice
$item = $client->account->$method->create(
$fromNumber, // The Twilio number we're sending from
$phoneNum, // The user's phone number
$content
);