Skip to contentSkip to navigationSkip to topbar
On this page

SDK Overview


Twilio provides a client-side SDK for browser-based development, as well as SDKs for native development on iOS and Android.

Our SDKs provide a convenient collection of objects, methods, and events to connect your client-side application to Conversations.

For the most up-to-date installation methods, version history, and documentation, please check out:


Initialization

initialization page anchor

Initializing the Conversations SDKs is an important step to ensure your client is ready to use on an end user's mobile or web device.

To get started, you'll need to initialize a new Client object. You'll need to pass a valid Access Token to the client creation method as the first parameter.

After that, you should listen for the client to inform you when it's fully initialized/synchronized.

Once you receive this confirmation, the client is ready to use!

Client InitializationLink to code sample: Client Initialization
1
/* Initialization */
2
import {Client} from "@twilio/conversations";
3
4
const client = new Client("token");
5
client.on("stateChanged", (state) => {
6
if (state === "failed") {
7
// The client failed to initialize
8
return;
9
}
10
11
if (state === "initialized") {
12
// Use the client
13
}
14
});

(information)

Info

If the token expires before you renew it, the client's connection state will change to disconnected, and you'll need to initialize a new client object.

All tokens have a limited lifetime to protect you from abuse. The maximum and default lifetime is 24 hours, but you should make it as short as possible for your application. Therefore, you may need to renew the token during your SDK session. The SDK will notify you when the token is "about to expire" and when it "has expired".

To avoid needing to instantiate a new client, you should get a new token from your server and pass it to the client's updateToken method before the old one expires. This method will update the authentication token for your client and re-register with the Conversations services.

1
/* Handling token expiration/expiration warning events */
2
3
client.on("tokenAboutToExpire", (time) => {
4
// token is about to expire. get a new token
5
try {
6
const token = (await fetch("https://placekitten.com/getToken?username=username&password=password")).data();
7
} catch {
8
return Error("Unable to get a token");
9
}
10
11
// update the client with new token
12
client = await client.updateToken(token);
13
14
// use updated client
15
});
16
17
client.on("tokenExpired", () => {
18
// get a new token
19
try {
20
const token = (await fetch("https://placekitten.com/getToken?username=username&password=password")).data();
21
} catch {
22
return Error("Unable to get a token");
23
}
24
25
// token expired. create a new client
26
client = new Client(token);
27
});
28
29
// update the token used by the client and re-register with the Conversations services
30
await client.updateToken("token");

(information)

Info

There is a reconnection attempt period when the network connectivity is lost before the client switches to the disconnected state.

During use, the connection state of your SDK client may change.

These are the possible client connection states:

  • connecting- the client is offline a and connection attempt is in progress
  • connected - client is online and ready
  • disconnecting - the client is going offline as disconnection is in progress
  • disconnected - the client is offline and no connection attempt is in progress
  • denied - client connection is denied because of an invalid JSON Web Token access token. The user must refresh the token in order to proceed

The above-mentioned states are also documented in our SDK reference docs.

The client state changes are due to different factors. For instance, let's take the disconnected state as an example. This could happen due to a network disruption, expired token, or other error. You can listen to the client's connection state events to detect this and respond accordingly.

1
/* Handle client state change */
2
3
client.on("connectionStateChanged", ({state}) => {
4
// handle new connection state
5
});

As you build out your Conversations application, you might find it helpful to check the Twilio Console debugger(link takes you to an external page). This service aggregates all additional errors or warnings that may be triggered from Twilio's webhooks to your server, as well as token errors.

You can also enable debug logging by passing an option for increased log verbosity to your client when you create it. Check the auto-generated docs or Error Handling and Diagnostics for platform-specific examples.


Congratulations, you have learned how to configure your Conversations SDK client! As a following step, you can:

Need some help?

Terms of service

Copyright © 2024 Twilio Inc.