Skip to contentSkip to navigationSkip to topbar
On this page

Twilio Verify Phone Verification Java Servlets Quickstart


(warning)

Warning

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:

  • Twilio helper libraries in multiple languages
  • PSD2 Secure Customer Authentication Support
  • Improved Visibility and Insights

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 to your application to validate new accounts 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(link takes you to an external page), JDK(link takes you to an external page), Servlets(link takes you to an external page) and AngularJS(link takes you to an external page) 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?


Sign Into (or Create) a Twilio Account

sign-into-or-create-a-twilio-account page anchor

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

Create a New Account Security Application

create-a-new-account-security-application page anchor

Once logged in, visit the Authy Console(link takes you to an external page). 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.

Authy create new application.

Twilio will redirect you to the Settings page next:

Account Security API Key.

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.


Clone and Setup the Verification Application

clone-and-setup-the-verification-application page anchor

Start by cloning our Servlets repository.(link takes you to an external page) Enter the directory and use gradle to install all of our dependencies:

gradle build
  1. Open the file .env.example
  2. Change ACCOUNT_SECURITY_API_KEY to the API Key from the above step
  3. Now, save the file as .env
  4. Source the env file: source .env

In Windows, set the ACCOUNT_SECURITY_API_KEY variable manually.

Enter an Application API Key

enter-an-application-api-key page anchor

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/applications
3
ACCOUNT_SECURITY_API_KEY=ENTER_SECRET_HERE

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!


Use the Java Servlets Twilio Verify Demo

use-the-java-servlets-twilio-verify-demo page anchor

Keeping your phone at your side, visit the Phone Verification page of the demo at http://localhost:8080/verification/(link takes you to an external page)

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.

Phone Verification by SMS or Voice.

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 (entering a number on the phone keypad).

Send a Phone Verification via SMS or Voice

send-a-phone-verification-via-sms-or-voice page anchor

This function allows you to send the verification code over SMS or Voice depending on the 'via' variable.

1
package com.twilio.accountsecurity.services;
2
3
import com.authy.AuthyApiClient;
4
import com.authy.api.Params;
5
import com.authy.api.Verification;
6
import com.twilio.accountsecurity.exceptions.TokenVerificationException;
7
import com.twilio.accountsecurity.servlets.requests.CheckPhoneVerificationRequest;
8
import com.twilio.accountsecurity.servlets.requests.StartPhoneVerificationRequest;
9
import org.slf4j.Logger;
10
import org.slf4j.LoggerFactory;
11
12
import static com.twilio.accountsecurity.config.Settings.authyId;
13
14
public class PhoneVerificationService {
15
16
private static final Logger LOGGER = LoggerFactory.getLogger(TokenService.class);
17
18
private AuthyApiClient authyApiClient;
19
20
public PhoneVerificationService(AuthyApiClient authyApiClient) {
21
this.authyApiClient = authyApiClient;
22
}
23
24
public PhoneVerificationService() {
25
this.authyApiClient = new AuthyApiClient(authyId());
26
}
27
28
public void start(StartPhoneVerificationRequest request) {
29
Params params = new Params();
30
params.setAttribute("code_length", "4");
31
Verification verification = authyApiClient
32
.getPhoneVerification()
33
.start(request.getPhoneNumber(),
34
request.getCountryCode(),
35
request.getVia(),
36
params);
37
38
if(!verification.isOk()) {
39
logAndThrow("Error requesting phone verification. " +
40
verification.getMessage());
41
}
42
}
43
44
public void check(CheckPhoneVerificationRequest request) {
45
Verification verification = authyApiClient
46
.getPhoneVerification()
47
.check(request.getPhoneNumber(),
48
request.getCountryCode(),
49
request.getToken());
50
51
if(!verification.isOk()) {
52
logAndThrow("Error verifying token. " + verification.getMessage());
53
}
54
}
55
56
private void logAndThrow(String message) {
57
LOGGER.warn(message);
58
throw new TokenVerificationException(message);
59
}
60
}

Either way you requested the passcode, enter the token into the Verification entry form and click 'Verify Phone':

Phone Verification Entry Box.

This function verifies the token for a user delivered over the Voice or SMS channel.

1
package com.twilio.accountsecurity.services;
2
3
import com.authy.AuthyApiClient;
4
import com.authy.api.Params;
5
import com.authy.api.Verification;
6
import com.twilio.accountsecurity.exceptions.TokenVerificationException;
7
import com.twilio.accountsecurity.servlets.requests.CheckPhoneVerificationRequest;
8
import com.twilio.accountsecurity.servlets.requests.StartPhoneVerificationRequest;
9
import org.slf4j.Logger;
10
import org.slf4j.LoggerFactory;
11
12
import static com.twilio.accountsecurity.config.Settings.authyId;
13
14
public class PhoneVerificationService {
15
16
private static final Logger LOGGER = LoggerFactory.getLogger(TokenService.class);
17
18
private AuthyApiClient authyApiClient;
19
20
public PhoneVerificationService(AuthyApiClient authyApiClient) {
21
this.authyApiClient = authyApiClient;
22
}
23
24
public PhoneVerificationService() {
25
this.authyApiClient = new AuthyApiClient(authyId());
26
}
27
28
public void start(StartPhoneVerificationRequest request) {
29
Params params = new Params();
30
params.setAttribute("code_length", "4");
31
Verification verification = authyApiClient
32
.getPhoneVerification()
33
.start(request.getPhoneNumber(),
34
request.getCountryCode(),
35
request.getVia(),
36
params);
37
38
if(!verification.isOk()) {
39
logAndThrow("Error requesting phone verification. " +
40
verification.getMessage());
41
}
42
}
43
44
public void check(CheckPhoneVerificationRequest request) {
45
Verification verification = authyApiClient
46
.getPhoneVerification()
47
.check(request.getPhoneNumber(),
48
request.getCountryCode(),
49
request.getToken());
50
51
if(!verification.isOk()) {
52
logAndThrow("Error verifying token. " + verification.getMessage());
53
}
54
}
55
56
private void logAndThrow(String message) {
57
LOGGER.warn(message);
58
throw new TokenVerificationException(message);
59
}
60
}

And with that, your demo app is protected with Twilio's Phone Verification! You can now log out to try the untried channel.


Your demo app is now keeping fraudulent users from registering with your business and polluting your database. Next, check out all of the variables and options available to you in the Phone Verification API Reference. Also, to protect your customers in an ongoing manner (with this same codebase) try the Java Servlets Authy Two-Factor Authentication Quickstart.

After that, visit the Docs for more Account Security demos and tutorials and web applications using all of Twilio's products.

Need some help?

Terms of service

Copyright © 2024 Twilio Inc.