Browser Calls with Java and Spark
This Spark web application shows how you can use Twilio Client to make browser-to-phone and browser-to-browser calls.
This application powers the support site for the Birchwood Bicycle Polo Co., which sells equipment to those who play "the sport of kings." It has three main features:
- Unsatisfied customers can submit support tickets with their phone number and their problem.
- Support agents can call customers' phones from their browser to follow up on support tickets.
- Customers can also use their browser to speak with support agents live when available.
In this tutorial, we'll point out the key bits of code that make this application work. Check out the project README on GitHub to see how to run the code yourself.
Learn how Zendesk uses Twilio Client to make phone support available in 40+ countries.
Submit a support ticket
The home page of our app displays a form for customers to submit support tickets. We use Mustache Template Engine to power the page, and this controller to create the ticket.
Let's look at the model.
The Support Ticket Model
A support ticket has just a few fields - a name for the end user, a description of the trouble they're having, and a phone number we can use to call them back.
Now we can create a ticket. Next up, let's work on the dashboard for the support agent.
The support dashboard
When a support agent visits /dashboard
, they see all the support tickets which have been submitted.
Each ticket also has a "Call Customer" button which invokes a JavaScript function we wrote named callCustomer()
. That function kicks off a Twilio Client call to the phone number passed as its sole parameter.
Great, now we have an interface good enough for our support agents. Next up, in order to let our agents make calls to their customers through the browser, we need to provide them a capability token.
Generate an Access token
We use the Twilio Java helper library to generate and configure our tokens. To allow our support agents to call the phone numbers on our tickets, we use a VoiceGrant
object.
That object requires an identifier for a TwiML Application. Twilio will send a POST request to our backend every time a user makes a Twilio Client call — the TwiML Application tells Twilio which URL to send that request to.
Once we are equipped with our Access Token, the next step is to set up the Twilio Device Client in the browser.
Set up a Twilio Device Client
To use the Twilio Device Client in a web browser we use the twilio.js library.
We start by retrieving an access token from the view we defined in the previous step with a POST request through AJAX. Then we enable the Twilio Device Client for this page by passing our token to Twilio.Device.setup()
.
After that the Twilio.Device.ready()
callback will let us know when the browser is ready to make and receive calls.
Now that we have almost everything in place, it's time to see the core of this tutorial. Let's look at how we can let our agents start a call from their browsers.
Calling a Customer (browser-to-phone)
When our support agents click on the Call Customer button on a support ticket, the function highlighted on the code snippet will initiate the call.
We use Twilio.Device.connect()
to begin a new outgoing call. Our backend will tell Twilio how to handle this call, so we include a phoneNumber
parameter that we'll use on our call
view.
Great! Now our agents are able to make calls to their customers. Next up, let's look at how to connect that call to a phone number.
Connect the call to a phone number
Whenever one of our users makes a call, Twilio will send a POST request to the URL we set on our TwiML Application - in this case, /call/connect
.
We use TwiML to respond to the request and tell Twilio how to handle the call. Twilio will pass along the phoneNumber
parameter from the previous step in its request, which we will then Dial in our TwiML.
After our call
view responds, Twilio completes the connection between our support agent's browser and the customer's phone. Let's go back to the browser and see how this is handled.
The call is live
We use the Twilio.Device.connect()
callback to update some UI elements to notify our users that they are in a call. This function receives a Connection object, which offers some additional details about the call.
And that's all for our browser-to-phone example. Next up, we will go even further and show a browser-to-browser example.
Call a support agent (browser-to-browser)
Support tickets are useful, but sometimes a customer needs help right now. With just a little more work we let customers speak with a support agent live via a browser-to-browser call.
When a customer clicks the Call support button on the home page we again use Twilio.Device.connect()
to initiate the call. This time we don't pass any additional parameters — our backend will route this call to our support agent.
Setting up the browser-to-browser call was rather simple right? Now let's look at how our backend will route this call to our support agent.
Connect the call to the support agent's client
To allow our support agents to accept incoming calls we use an IncomingClientScope
when generating their access token, passing support_agent
as the client's name.
When Twilio sends a POST request to our /call/connect
endpoint, we can connect the call to our support agent by responding with a <Client> TwiML noun and the support_agent
name.
That's how we prepare everything for accepting incoming calls. Now we should go back in the browser and see how to handle the connection this time.
Answer the call
When our support agent's client receives an incoming call, it will trigger the function we defined on the Twilio.Device.incoming()
callback.
The incoming connection
will be in a pending state until we invoke its .accept()
method, which we do in a function bound to the Answer Call button.
We also set a .accept()
callback to update the UI once the call is live.
Great! Now we know how to work on both cases: browser-to-phone and browser-to-browser calls! Next up, we will see what happens when they decide to hang up the call.
Hang up the Call
In order to finish a call we invoke Twilio.Device.disconnectAll(),
which we wired to the Hang up button in our UI.
We also pass a callback function to Twilio.Device.disconnect()
above, to reset some UI elements.
That's it! Our Spark application now powers browser-to-phone and browser-to-browser calls using Twilio Client.
Where to next?
If you're a Java developer working with Twilio, you might also enjoy these tutorials:
Schedule appointment reminders to be sent via sms
Alert all administrators via SMS when a server outage occurs.
Did this help?
Thanks for checking this tutorial out! If you have any feedback to share with us please contact us on Twitter, we'd love to hear it.
Need some help?
We all do sometimes; code is hard. Get help now from our support team, or lean on the wisdom of the crowd browsing the Twilio tag on Stack Overflow.