Getting ServisBOT messenger installed on a website is as simple as adding our install script to your site template.
The code snippet must be inserted before the main closing body tag ie. </body>
. You must also include the code snippet in all pages that require the ServisBot web messenger
Add the following script to any web page within your web application which you would like to include the ServisBOT web messenger.
<script src="//lightning.production.helium.servismatrixcdn.com/v2/latest/bundle-messenger.js"></script>
<script>
/*
* Init Messenger with your desired configuration
*/
function initializeMessenger() {
const ServisBOT = window.ServisBot.init({
organization: 'yourOrganization',
endpoint: 'youEndpointAddress',
sbRegion: "eu-1",
version: "2",
displayWidget: true
});
window.lightningLauncher = ServisBOT;
return ServisBOT;
}
// Load messenger when your host page finishes loading content.
window.addEventListener('load', (event) => {
initializeMessenger();
});
</script>
Your src for bundle-messenger.js
script tag might change based on your region.
eu-1
: Use //lightning.production.helium.servismatrixcdn.com/v2/latest/bundle-messenger.js"
us1
: Use //lightning.us1.helium.servismatrixcdn.com/v2/latest/bundle-messenger.js
//
you may need to explicitly reference the src with https://
If your bot on mobile is not taking up the full height and width of the page as desired, please make sure the host page has viewport meta initial scale set to 1 (shown below)
<meta name="viewport" content="width=device-width, initial-scale=1.0">