Integrate freshchat with my ionic 3 application

1.3k Views Asked by At

I want to integrate FreshChat with my Ionic 3 application. FreshChat currently doesn't have any support for cordova. Is there any way i can use FreshChat web messenger. I tried importing the script in my index.html and tried to access the window.fcSettings but it was of no use. Thanks in advance.

1

There are 1 best solutions below

0
On

window.fcSettings is intended for async load. Please use the snippet below.

if (window.fcWidget) {
   window.fcWidget.init(payload);
} else {
   window.fcSettings = payload;
}