freezing-carpenter-9818
08/09/2023, 3:48 PM<script src="https://cdn.botpress.cloud/webchat/v0/inject.js"></script>
<script src="https://mediafiles.botpress.cloud/your-bot-id/webchat/config.js" defer></script>
<script>
window.botpressWebChat.onEvent(
function (ev) {
window.botpressWebChat.sendEvent({
type: "loadConversation",
});
},
["LIFECYCLE.LOADED"]
);
window.addEventListener("message", function (event) {
// console.log(event.data.type);
if (event.data.type == "LIFECYCLE.READY") {
window.botpressWebChat.sendEvent({
type: "trigger",
channel: "web",
payload: {
text: "",
},
});
}
});
</script>