JavaScript Integration
Integrate the Helper Chat Widget with vanilla JavaScript
For applications not using React, you can integrate the Helper Chat Widget using vanilla JavaScript. This approach requires both backend and frontend components to ensure secure authentication.
Backend Setup
First, you'll need to generate an HMAC hash on your server to authenticate the widget.
Store Your HMAC Secret
Securely store your HMAC secret in your server environment. This secret should never be exposed to the client.
Generate HMAC Hash
When a user is authenticated in your application, generate an HMAC hash using their email and the current timestamp:
This hash, along with the email and timestamp, will be passed to the frontend to initialize the widget.
Frontend Setup
Basic Implementation
Add the following script to your HTML, replacing the placeholder values with the actual values from your backend:
Advanced Usage
Controlling Widget Visibility
You can programmatically show, hide, or toggle the chat widget:
Adding Contextual Help Buttons
You can add context-specific help buttons using HTML data attributes:
Configuration Options
The init
method accepts the following options:
Option | Type | Required | Description |
---|---|---|---|
email | string | Yes | Email address of the authenticated customer |
email_hash | string | Yes | HMAC hash generated on the server |
mailbox_slug | string | Yes | Your mailbox slug from Helper dashboard |
timestamp | number | Yes | Timestamp used in HMAC generation |
title | string | No | Custom title for the chat widget |
metadata.value | number | No | Revenue value of the customer |
metadata.name | string | No | Name of the customer |
metadata.links | object | No | Key-value pairs of links related to the customer |
Security Considerations
- Never expose your HMAC secret on the client side
- Always generate the HMAC hash on your server
- Use HTTPS to prevent man-in-the-middle attacks
- Validate the timestamp on your server to prevent replay attacks