如何在 reactjs 中初始化 mesibo 控制台。适用于网络应用而非 android 应用。在 reactJS 中而不是在 Reactnative 中

How to initialize mesibo console in reactjs. for web app and not android apps. In reactJS not in Reactnative

如何使用 django 后端在我的 reactjs 网络应用程序中初始化 mesibo 连接。
我找不到这样做的任何资源。尽管我已经包括
<script type="text/javascript" src="https://api.mesibo.com/mesibo.js"></script>
在 index.html 中,它也在浏览器中加载,但已经初始化

initializeApiConn = () => {
  this.setState({
    api: new Mesibo()
  })
}

无法识别 Mesibo()
我能有任何资源和任何链接来理解 mesibo 与 reactjs 的这种联系吗?

--------------------------------
编辑:

如果您在 index.html 中包含 mesibo js,您可能需要在 ReactJS

中使用 window.Mesibo()

或者,使用DOM方法加载mesibo。

const script = document.createElement("script");
script.src = "https://api.mesibo.com/mesibo.js";
document.body.appendChild(script);