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="CDN for bundle-messenger.js"></script>
<script>
/*
* Init Messenger with your desired configuration
*/
let ServisBOT = null;
function initializeMessenger() {
var sbConfig = {
organization: 'Your Organization',
endpoint: 'Endpoint Address',
sbRegion: "Your Region",
version: "2",
}
ServisBOT = ServisBot.init(sbConfig);
}
// 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
Replace ‘yourOrganization’ with the name in which you registered with ServisBOT. Replace ‘yourEndpointAddress’ with the specific endpoint alias.
//
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">