0

我想在通过phonegap构建的混合移动应用程序上使用tawk,我将api脚本复制到我的文档中,我首先在我的localhost上尝试并且它运行正常,在我使用phonegap构建之后它不运行。这是 tawk.to 嵌入代码:

<script type="text/javascript">
var Tawk_API=Tawk_API||{}, Tawk_LoadStart=new Date();
Tawk_API.onLoad = function(){
    $("#chat-admin").show();
    alert('loaded');
};
(function(){
var s1=document.createElement("script"),s0=document.getElementsByTagName("script")[0];
s1.async=true;
s1.src='https://embed.tawk.to/YOUR_API/default';
s1.charset='UTF-8';
s1.setAttribute('crossorigin','*');
s0.parentNode.insertBefore(s1,s0);
})();
</script>

即使我设置脚本以确保它是否已加载

Tawk_API.onLoad = function(){
    $("#chat-admin").show();
    alert('loaded');
};

但脚本仍然没有加载到我的混合移动应用程序上。请问有人可以帮忙吗?

4

2 回答 2

1

今天我在 tawkto 的支持下交谈,他们说这是不可能的。

于 2019-11-26T04:53:20.897 回答
0

在 Cordova 的应用程序中实现 tawk.to 的唯一方法是聊天的直接链接,您可以在 tawk.to 仪表板的聊天小部件设置下找到该链接。

  1. 获取聊天的直接链接
  2. 在 iFrame 中使用它以查看您希望聊天的位置

此解决方案的缺点是您无法控制聊天。您不能预填充字段或添加自定义参数。

于 2021-01-06T07:56:04.027 回答