Report a Phone Call verification code with Java
Now that you've initiated a verification request and received a code, it's time to report that code in order to verify the identity of the user.
In this guide you will learn:
What you need to know before you start
Before you can get started, you need the following already set up:
- Set all Verification API configuration settings.
- JDK 8 or later and a familiarity with how to create a new Java application.
- Gradle and a familiarity with how use the Gradle build tools.
Set up your Java application
Create a new folder where you want to keep your app project. Then, open a terminal or command prompt to that location.
Create a new Java application using Gradle with the following command:
gradle init
app
, and then accept the defaults for the rest of the options.Modify your application
Open theApp.java
file in your project folder, located in \app\scr\main\java\app
, and populate that file with the "App.java" code found on this page.Note:
This tutorial uses basic authentication for testing purposes. We recommend using a signed request for authentication in a production environment. You can follow the steps in this guide, but use the code samples from here to use request signing authentication instead.
toNumber
parameter to verify that a code sent to that number is valid.Fill in your parameters
Before you can run the code, you need to update some values so you can connect to your Sinch account. Update the following parameters with your own values:
Parameter | Your value |
---|---|
applicationKey | The application key found on your Sinch dashboard. |
applicationSecret | The application secret found on your Sinch dashboard. |
toNumber | This should be the number of the mobile handset you are using for this guide. |
code | This is the code which was received by the mobile handset in the initiate verification guide. These codes are only valid for 10 minutes, so ensure you have initiated a verification within the last ten minutes so you can successfully match the code! |
Save the file.
Report your verification request
Now you can execute the code and report your verification request. Run the following command:
gradle run
If the code was correct, your console will show a success result in the response from Sinch. You can test this by entering an incorrect code and seeing the failed result response.
Troubleshooting tip
If after running your app you receive a 5000 error response, you may have forgotten to save your file after adding your authentication values. This is an easy mistake to make! Try saving the file and running the app again.
Additional resources
Learn more about the Verification API: