Verify v1 API has reached End of Sale. It 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. v2 has an improved developer experience and new features, including:
Existing customers will not be impacted at this time until Verify v1 API has reached End of Life. For more information about migration, see Migrating from 1.x to 2.x.
Phone Verification is an important, high-confidence step in a registration flow to verify that a user has the device they claim to have. Adding Twilio Verify phone verification to your application will greatly reduce your number of fraudulent registrations and protect future application users from having their numbers registered by scammers.
This quickstart guides you through creating a Java, Spring and AngularJS app that requires a phone verification step to create an account. Two channels of phone verification are demoed: SMS and Voice.
Ready to add Twilio Verify to a demo app and keep the bad actors away? Enter stage left!
Either sign up for a free Twilio trial, or sign into an existing Twilio account.
Once logged in, visit the Authy Console. Click on the red 'Create New Application' (or big red plus ('+') if you already created one) to create a new Authy application then name it something memorable.
Twilio will redirect you to the Settings page next:
Click the eyeball icon to reveal your Production API Key, and copy it somewhere safe. You will use the API Key during the application setup step below.
Start by cloning our Spring repository. Enter the directory and use npm to install all of our dependencies:
gradle build
.env.example
ACCOUNT_SECURITY_API_KEY
to the API Key from the above step.env
Enter the API Key from the Authy console and optionally change the port.
1# You can get/create one here :2# https://www.twilio.com/console/authy/applications3export ACCOUNT_SECURITY_API_KEY=ENTER_SECRET_HERE
And that's all the setup you'll need!
Now, launch the application with:
gradle appRun
Assuming your API Key is correctly entered you'll soon get a message that the app is up!
Keeping your phone at your side, visit the phone verification page of the demo at http://localhost:8080/verification/
Enter a Country Code
and Phone Number
, then choose which channel to request verification over, 'SMS' or 'CALL' (Voice). Finally, hit the blue 'Request Verification' button and wait.
You won't be waiting long - you'll either receive a phone call or an SMS with the verification token. If you requested a phone call, as an additional security feature you may need to interact to proceed (by entering a number on the phone keypad).
This function allows you to send the verification code over SMS or Voice depending on the 'via' variable.
1package com.twilio.accountsecurity.services;23import com.authy.AuthyApiClient;4import com.authy.api.Params;5import com.authy.api.Verification;6import com.twilio.accountsecurity.exceptions.TokenVerificationException;7import org.slf4j.Logger;8import org.slf4j.LoggerFactory;9import org.springframework.beans.factory.annotation.Autowired;10import org.springframework.stereotype.Service;1112@Service13public class PhoneVerificationService {1415private static final Logger LOGGER = LoggerFactory.getLogger(TokenService.class);1617private AuthyApiClient authyApiClient;1819@Autowired20public PhoneVerificationService(AuthyApiClient authyApiClient) {21this.authyApiClient = authyApiClient;22}2324public void start(String countryCode, String phoneNumber, String via) {25Params params = new Params();26params.setAttribute("code_length", "4");27Verification verification = authyApiClient28.getPhoneVerification()29.start(phoneNumber, countryCode, via, params);3031if(!verification.isOk()) {32logAndThrow("Error requesting phone verification. " +33verification.getMessage());34}35}3637public void verify(String countryCode, String phoneNumber, String token) {38Verification verification = authyApiClient39.getPhoneVerification()40.check(phoneNumber, countryCode, token);4142if(!verification.isOk()) {43logAndThrow("Error verifying token. " + verification.getMessage());44}45}4647private void logAndThrow(String message) {48LOGGER.warn(message);49throw new TokenVerificationException(message);50}51}
Either way you requested the passcode, enter the token into the Verification entry form and click 'Verify Phone':
This function verifies the token delivered over the Voice or SMS channel.
1package com.twilio.accountsecurity.services;23import com.authy.AuthyApiClient;4import com.authy.api.Params;5import com.authy.api.Verification;6import com.twilio.accountsecurity.exceptions.TokenVerificationException;7import org.slf4j.Logger;8import org.slf4j.LoggerFactory;9import org.springframework.beans.factory.annotation.Autowired;10import org.springframework.stereotype.Service;1112@Service13public class PhoneVerificationService {1415private static final Logger LOGGER = LoggerFactory.getLogger(TokenService.class);1617private AuthyApiClient authyApiClient;1819@Autowired20public PhoneVerificationService(AuthyApiClient authyApiClient) {21this.authyApiClient = authyApiClient;22}2324public void start(String countryCode, String phoneNumber, String via) {25Params params = new Params();26params.setAttribute("code_length", "4");27Verification verification = authyApiClient28.getPhoneVerification()29.start(phoneNumber, countryCode, via, params);3031if(!verification.isOk()) {32logAndThrow("Error requesting phone verification. " +33verification.getMessage());34}35}3637public void verify(String countryCode, String phoneNumber, String token) {38Verification verification = authyApiClient39.getPhoneVerification()40.check(phoneNumber, countryCode, token);4142if(!verification.isOk()) {43logAndThrow("Error verifying token. " + verification.getMessage());44}45}4647private void logAndThrow(String message) {48LOGGER.warn(message);49throw new TokenVerificationException(message);50}51}
And with that, your demo app is protected with Twilio's Verify! You can now log out to try the other channel.
Your demo app is now keeping hordes of fraudulent users from registering with your business and polluting the database. Next, check out all of the variables and options available to you in the Verify API Reference. Also, for protecting your customers in an ongoing manner (with this same codebase) try the Java Spring Authy Two-Factor Authentication Quickstart.
After that, take a stroll through the Docs for more Account Security demos and tutorials - as well as sample web applications using all of Twilio's products.