Skip to contentSkip to navigationSkip to topbar
Page toolsOn this page

Integrate Flex with Glance Cobrowse


Glance Cobrowse enables agents to instantly join customers in viewing your app or website. Agents can guide customer navigation, answer questions, and assist with completing transactions. You can launch a Glance Cobrowse session from the Twilio Flex platform with the click of a button — no need for the customer to download or install a screen sharing app.

Twilio Flex interface with chat about home equity rates and Global Home Lending website.

Glance lets agents know when customers are present on your website and makes it easy to launch a Cobrowse session with a single click. You can also enable video to personalize the Glance Cobrowse experience.


Prerequisites

prerequisites page anchor

To integrate the Glance Cobrowse Component with Flex, you need the following:

Example of the Glance Cobrowse script tag:

1
<script id="glance-cobrowse" type="text/javascript"
2
src="https://www.glancecdn.net/cobrowse/CobrowseJS.ashx?group={groupid}&site={production|staging}"
3
data-groupid="{groupid}"
4
data-site="{production|staging}"
5
data-inputevents='{...}'
6
data-termsurl="{terms and conditions url}"
7
data-cookiedomain="{session cookie domain}"
8
data-cookietype="{normal|ls|dual|secure}"
9
charset="UTF-8"
10
data-presence="api">
11
</script>

To integrate the Glance Cobrowse Component with Flex, you must:

  1. Set up authentication.
  2. Install the Glance Cobrowse Component from NPM.
  3. Add the Glance Cobrowse Component to the Flex interface.
  4. Install Flex Webchat and add Glance.

In order to connect to Glance from Flex, you need to set up authentication. Glance uses the same user ID from the identity provider to call a Twilio Function to authenticate into Glance.

Before setting up authentication, ensure that:

  • You have configured SSO with an identity provider (such as Okta) for Flex.
  • You have a Glance Admin account.
  • If you are setting up Glance Cobrowse for multiple agents, each agent has a Glance Account.
  • You have set the Partner User ID (PUID) field in Glance to match the user ID in your identity provider. Refer to Glance's Manage Users(link takes you to an external page) page for instructions to set your user ID.

To set up authentication:

  1. From the Twilio Console > Functions > Services, select Create Service.

  2. Enter a Service Name then select Next.
    For example: yourcompanyname-glance. Note: Remember this Service Name to use it later when adding the Glance Cobrowse Component to Flex.

  3. Select Add+ > Add Function.
    A new field appears.

  4. Remove the default name /path_1 and input getloginkey. Click enter to generate the function.

  5. Click the drop-down next to Protected to set the visibility to Public.

  6. In the text editor on the right, paste the code below then select Save.

    1
    const TokenValidator = require('twilio-flex-token-validator').functionValidator;
    2
    3
    exports.handler = TokenValidator(function(context, event, callback) {
    4
    const response = new Twilio.Response();
    5
    6
    response.appendHeader('Access-Control-Allow-Origin', '*');
    7
    response.appendHeader('Access-Control-Allow-Methods', 'GET', 'POST');
    8
    response.appendHeader('Access-Control-Allow-Headers', 'Content-Type');
    9
    response.appendHeader('Content-Type', 'application/json');
    10
    11
    try {
    12
    const version = 1;
    13
    const expires = (Math.round((new Date()).valueOf() / 1000)) + parseInt(context.GLANCE_EXPIRATION, 10);
    14
    const keystring = context.GLANCE_GROUP_ID + event.partneruserid + version + expires;
    15
    const CryptoJS = require('crypto-js');
    16
    const hmac = CryptoJS.HmacSHA256(keystring, context.GLANCE_API_KEY);
    17
    const hmacb64 = hmac.toString(CryptoJS.enc.Base64)
    18
    const loginkey = "$" + version + "$" + expires + "$" + hmacb64.substr(0, 43).replace(/\+/g, '-').replace(/\//g, '_');
    19
    20
    response.setBody({
    21
    'loginKey': loginkey,
    22
    'groupId': context.GLANCE_GROUP_ID,
    23
    'expiration': expires,
    24
    'apiKey': context.GLANCE_API_KEY
    25
    });
    26
    27
    response.setStatusCode(200);
    28
    callback(null, response);
    29
    } catch(error) {
    30
    response.setStatusCode(404);
    31
    callback(null, response);
    32
    }
    33
    34
    });
  7. In Settings > Environment Variables, add the following Environment Variables:

    • Add GLANCE_API_KEY and set the value to your Glance API Key. To find your Glance API Key, log in to your Glance account. Go to Settings > API Key.
    • Add GLANCE_EXPIRATION and set the value to a length of time (in seconds) when you want the session to expire. We recommend 3600
    • Add GLANCE_GROUP_ID and set the value to the Glance group ID for your company. Note: The Glance group ID is a unique ID assigned to your company by Glance. You can find this in the Glance portal in the top-right corner of every page.
  8. In Settings > Dependencies, add the following dependencies without a version number:

    • twilio-flex-token-validator
    • crypto-js
  9. Select Deploy All.


Install the Glance Cobrowse Component from NPM

install-the-glance-cobrowse-component-from-npm page anchor

You must add the Glance Cobrowse Component to either an existing or a new Flex Plugin. In your terminal, run:

npm install @glance-networks/agent-plugin

If you're using Yarn, run the following instead:

yarn add @glance-networks/agent-plugin

For more information, see the ReadMe(link takes you to an external page).


Add the Glance Cobrowse Component to Flex

add-the-glance-cobrowse-component-to-flex page anchor

After installing the Glance Cobrowse Component, choose where you want the button to display inside Flex. Learn how to customize Flex UI Components.

Import the component inside your Flex project. In glanceplugin.js (note: the name of the plugin is autocreated when you make the file) or .jtx file, add the following to the first line:

import {Glance} from @glance-networks/agent-plugin

Example of the Glance Cobrowse Component inside the task canvas header:

1
flex.TaskCanvasHeader.Content.add(
2
<Glance
3
key={"your-key-name"}
4
groupid={"your-group-id"}
5
puid={"your-puid"}
6
openlocation={"tab"}
7
presence={true}
8
glancebaseurl={"production"}
9
visitorid={"the-task-sid"}
10
debugmode={false}
11
gicon={true}
12
authmethod={"LOGINKEY"}
13
authurl={"auth-url"}
14
authheaders={{ 'Content-Type': 'application/x-www-form-urlencoded' }}
15
authbody={authBodyParams}
16
uiversion={2}
17
customopenwindow={false}
18
/>, {options}
19
);

Example of the Glance Component inside the CRM Container:

Note: If you are opening sessions inside the iframe, you must use the CRM Container. You should not use this option if you need this panel for other content, as it will fill the contents of the entire panel with the Glance Cobrowse session.

1
flex.CRMContainer.Content.replace(
2
<Glance
3
key={"your-key-name"}
4
groupid={"your-group-id"}
5
puid={"your-puid"}
6
openlocation={"tab"}
7
presence={true}
8
glancebaseurl={"production"}
9
visitorid={"the-task-sid"}
10
debugmode={false}
11
gicon={true}
12
authmethod={"LOGINKEY"}
13
authurl={"auth-url"}
14
authheaders={{ 'Content-Type': 'application/x-www-form-urlencoded' }}
15
authbody={authBodyParams}
16
uiversion={2}
17
customopenwindow={false}
18
/>, {options}
19
);

Important: In the cases above, AgentDesktopView.Panel2 is open or closed depending on how you set the default properties.

The following table describes the properties inside the component:

PropertyTypeDefinition
authbodyfunctionOptional. If using authmethod=loginkey, you can optionally pass data to your function with the POST request body.
authheadersobjectOptional. If using authmethod=loginkey, you can further customize your loginkey endpoint by passing headers to your function (for example, an Authorization header).
authmethodenumerationOptional. Valid values are loginkey (default) and samlloginkey. To use this, you must have set up SAML with Glance(link takes you to an external page).
authurlstringRequired. Set the value to the URL for your login key service.
custominvokeobjectOptional. A presence agent can invoke JavaScript functions defined on the visitor's web page by providing an object that defines the following parameters: func name of the function, args function arguments. See the ReadMe(link takes you to an external page) for an example.
debugmodebooleanOptional. true turns on console logs to assist in debugging. false (default) turns off console logs.
giconRequired. Set this property to true if you want to show the Glance logo next to the Join button. If you don't set this property, or if you set it to false, the logo doesn't appear.

Install Flex Webchat and Add Glance

install-flex-webchat-and-add-glance page anchor

Flex Webchat provides an embeddable chat widget for integrating live chat into your website. To learn more about setting up Webchat and Glance, see Twilio Flex Webchat(link takes you to an external page) in the Glance developer documentation.

Modify the position of the Glance Cobrowse button

modify-the-position-of-the-glance-cobrowse-button page anchor

You may want to move the location of the Glance Cobrowse button on your website so that it does not interfere with Flex Webchat.

  1. Log in to your Glance Account(link takes you to an external page).

  2. Go to Settings > Button Customization and add the following CSS under the Custom CSS section:

    1
    #glance_cobrowse_btn{
    2
    left: 20px !important;
    3
    right: auto !important;
    4
    }

Learn more about Glance's other customer engagement features, like Remote Assist and Video, on their Features page(link takes you to an external page).