Skip to contentSkip to navigationSkip to topbar
Rate this page:
On this page

PHP-Laravel Quickstart for Twilio Authy Two-factor Authentication


(warning)

Warning

As of November 2022, Twilio no longer provides support for Authy SMS/Voice-only customers. Customers who were also using Authy TOTP or Push prior to March 1, 2023 are still supported. The Authy API is now closed to new customers and will be fully deprecated in the future.

For new development, we encourage you to use the Verify v2 API.

Existing customers will not be impacted at this time until Authy API has reached End of Life. For more information about migration, see Migrating from Authy to Verify for SMS(link takes you to an external page).

Adding two-factor authentication to your application is the easiest way to increase security and trust in your product without unnecessarily burdening your users. This quickstart guides you through building a PHP(link takes you to an external page), Laravel(link takes you to an external page) and AngularJS(link takes you to an external page) application that restricts access to a URL. Four Authy two-factor authentication channels are demoed: SMS, Voice, Soft Tokens and Push Notifications.

Ready to protect your toy app's users from nefarious balaclava wearing hackers? Dive in!


Sign Into - or Sign Up For - a Twilio Account

sign-into---or-sign-up-for---a-twilio-account page anchor

Create a new Twilio account (you can sign up for a free Twilio trial), or sign into an existing Twilio account(link takes you to an external page).

Create a new Authy application

create-a-new-authy-application page anchor

Once logged in, visit the Authy Console(link takes you to an external page). Click on the red 'Create New Aplication' (or big red plus ('+') if you already created one) to create a new Authy application then name it something memorable.

Authy create new application.

You'll automatically be transported to the Settings page next. Click the eyeball icon to reveal your Production API Key.

Account Security API Key.

Copy your Production API Key to a safe place, you will use it during application setup.


Setup Authy on your device

setup-authy-on-your-device page anchor

This Authy two-factor authentication quickstart demos two channels which require an installed Authy Client to test: Soft Tokens and Push Notifications. While SMS and Voice channels will work without the client, to try out all four authentication channels download and install Authy Client for Desktop or Mobile:


Install the application prerequisites

install-the-application-prerequisites page anchor

To complete the quickstart today we'll use PHP 7.0+, Composer, MySQL, and the Twilio PHP Helper Library. Let's walk through installation below. Skip ahead if you have already installed one.

When doing PHP web development, we strongly suggest using Composer(link takes you to an external page) for package management. This quickstart relies on Composer to install the Twilio PHP Helper library. You can find manual installation instructions on the PHP Helper Library page(link takes you to an external page).

You'll need a database for storing Authy IDs when a user registers in this quickstart. For this demo, we built our user database on top of MySQL 5.x.

If you haven't yet installed MySQL, here are instructions for your platform:

When installed, start it. If you're using the default MySQL credentials (as below), create schema account_security with an admin user homestead and password secret.


Clone and Setup the Application

clone-and-setup-the-application page anchor

Clone our PHP repository locally(link takes you to an external page), then enter the directory.


_10
git clone git@github.com:TwilioDevEd/account-security-quickstart-php.git
_10
cd account-security-quickstart-php
_10
composer install

cp .env.example .env

Next, copy your Authy API Key from the Authy Dashboard and set the API_KEY variable in your .env file.

Add Your Application API Key

add-your-application-api-key page anchor

Enter the API Key from the Account Security console and optionally change the port.


_25
# Get your API key here: https://www.twilio.com/console/authy/getting-started
_25
API_KEY=your-authy-api-key
_25
_25
APP_DEBUG=true
_25
APP_ENV=development
_25
APP_KEY=
_25
APP_LOG=errorlog
_25
_25
# By default, if you'd like to match this install MySQL locally.
_25
# host: localhost:3306
_25
# DB user: homestead
_25
# DB pass: secret
_25
# DB name: account_security
_25
_25
DB_DATABASE=account_security
_25
DB_HOST=localhost
_25
DB_PASSWORD=secret
_25
DB_PORT=3306
_25
DB_USERNAME=homestead
_25
MYSQL_DATABASE=account_security
_25
MYSQL_PASSWORD=secret
_25
MYSQL_PORT=3306
_25
MYSQL_ROOT_PASSWORD=secret
_25
MYSQL_USER=homestead
_25
SECRET=your-account-secret

Once you have added your API Key, you are ready to run! Launch the app with:


_10
php artisan key:generate
_10
php artisan migrate
_10
php artisan serve --port 8081

You should get a message your new app is running!


Try the PHP Authy Two-Factor Demo

try-the-php-authy-two-factor-demo page anchor

With your phone (optionally with the Authy client installed) nearby, open a new browser tab and navigate to http://localhost:8081/register/index.html(link takes you to an external page)

Enter your information and invent a password, then hit 'Register'. Your information is passed to Twilio (you will be able to see your user immediately in the console(link takes you to an external page)), and the application is returned a user_id.

Now visit http://localhost:8081/login/index.html(link takes you to an external page) and login. You'll be presented with a happy screen:

Two Factor Authentication Demo.

If your phone has the Authy Client installed, you can immediately enter a Soft Token from the client to Verify. Additionally, you can try a Push Notification simply by pushing the labeled button.

If you do not have the Authy Client installed, the SMS and Voice channels will also work in providing a token. To try different channels, you can logout to start the process again.

Two-Factor Authentication Channels

two-factor-authentication-channels page anchor

_141
<?php
_141
_141
namespace App\Http\Controllers\Auth;
_141
_141
use \Exception;
_141
use App\Http\Controllers\Controller;
_141
use App\Library\Services\OneTouch;
_141
use App\User;
_141
use Authy\AuthyApi;
_141
use Illuminate\Http\Request;
_141
use Illuminate\Support\Facades\Validator;
_141
_141
class AccountSecurityController extends Controller
_141
{
_141
/*
_141
|--------------------------------------------------------------------------
_141
| Account Security Controller
_141
|--------------------------------------------------------------------------
_141
|
_141
| Uses Authy to verify a users phone via voice, sms or notifications.
_141
|
_141
*/
_141
_141
/**
_141
* Create a new controller instance.
_141
*
_141
* @return void
_141
*/
_141
public function __construct()
_141
{
_141
$this->middleware('auth');
_141
}
_141
_141
/**
_141
* send verification code via SMS.
_141
*
_141
* @param Illuminate\Support\Facades\Request $request;
_141
* @return Illuminate\Support\Facades\Response;
_141
*/
_141
protected function sendVerificationCodeSMS(
_141
Request $request,
_141
AuthyApi $authyApi
_141
) {
_141
$user_id = session('user_id');
_141
$user = User::find($user_id);
_141
$authyID = $user['authyID'];
_141
$authyApi->requestSms($authyID, ['force' => 'true']);
_141
_141
return response()->json(['message' => 'Verification Code sent via SMS succesfully.']);
_141
}
_141
_141
_141
/**
_141
* send verification code via Voice Call.
_141
*
_141
* @param Illuminate\Support\Facades\Request $request;
_141
* @return Illuminate\Support\Facades\Response;
_141
*/
_141
protected function sendVerificationCodeVoice(
_141
Request $request,
_141
AuthyApi $authyApi
_141
) {
_141
$user_id = session('user_id');
_141
$user = User::find($user_id);
_141
$authyID = $user['authyID'];
_141
$authyApi->phoneCall($authyID, ['force' => 'true']);
_141
_141
return response()->json(['message' => 'Verification Code sent via Voice Call succesfully.']);
_141
}
_141
_141
/**
_141
* verify token.
_141
*
_141
* @param Illuminate\Support\Facades\Request $request;
_141
* @return Illuminate\Support\Facades\Response;
_141
*/
_141
protected function verifyToken(
_141
Request $request,
_141
AuthyApi $authyApi
_141
) {
_141
$data = $request->all();
_141
$token = $data['token'];
_141
$user_id = session('user_id');
_141
$user = User::find($user_id);
_141
$authyID = $user['authyID'];
_141
$authyApi->verifyToken($authyID, $token);
_141
_141
return response()->json(['message' => 'Token verified successfully.']);
_141
}
_141
_141
/**
_141
* Create One Touch Approval Request.
_141
*
_141
* @param Illuminate\Support\Facades\Request $request;
_141
* @return Illuminate\Support\Facades\Response;
_141
*/
_141
protected function createOneTouch(
_141
Request $request,
_141
OneTouch $oneTouch
_141
) {
_141
$data = $request->all();
_141
$user_id = session('user_id');
_141
$user = User::find($user_id);
_141
$authyID = $user['authyID'];
_141
$username =$user['username'];
_141
_141
$data = [
_141
'message' => 'Twilio Account Security Quickstart wants authentication approval.',
_141
'hidden' => 'this is a hidden value',
_141
'visible' => [
_141
'username' => $username,
_141
'AuthyID' => $authyID,
_141
'Location' => 'San Francisco, CA',
_141
'Reason' => 'Demo by Account Security'
_141
],
_141
'seconds_to_expire' => 120
_141
];
_141
_141
$onetouch_uuid = $oneTouch->createApprovalRequest($data);
_141
session(['onetouch_uuid' => $onetouch_uuid]);
_141
_141
return response()->json(['message' => 'Token verified successfully.']);
_141
}
_141
_141
/**
_141
* Get OneTouch Status.
_141
*
_141
* @param Illuminate\Support\Facades\Request $request;
_141
* @return Illuminate\Support\Facades\Response;
_141
*/
_141
protected function checkOneTouchStatus(
_141
Request $request,
_141
OneTouch $oneTouch
_141
) {
_141
$response = $oneTouch->oneTouchStatus(session('onetouch_uuid'));
_141
_141
session(['authy' => $body['approval_request']['status']]);
_141
_141
return response()->json($response, 200);
_141
}
_141
}

And there you go, Authy two-factor authentication is on and your PHP/Laravel app is protected!


Now that you are keeping the hackers out of this demo app using Authy two-factor authentication, you can find all of the detailed descriptions for options and API calls in our Two-factor Authentication API Reference. If you're also building a registration flow, also check out our Phone Verification product and the Verify Quickstart which uses this codebase.

For additional guides and tutorials on account security and other products, in PHP and in our other languages, take a look at the Docs.


Rate this page: