Angular2 应用程序中的 Twilio 聊天
Twilio Chat in Angular2 application
我试图在我的 Angular2 应用程序中添加 TWILIO Chat。我从这个 link - 得到了一个将 TWILIO 导入我们的组件的解决方案。
在安慰我从 declare const Twilio: any;
获得的 Twilio
变量时,我得到了整个 twilio 函数。谁能告诉我如何在我的应用程序中实际实现聊天应用程序或如何使用该功能。
此处为 Twilio 开发人员布道师。
现在您有了 Twilio
变量,您可以通过 Twilio.Chat.Client
对象访问聊天功能。
我建议通读 Twilio Programmable Chat documentation to see how it all works together and how you can build your own chat application. You can also check out the example application,它不是内置在 Angular 中,但应该让您了解应该如何协同工作。
我试图在我的 Angular2 应用程序中添加 TWILIO Chat。我从这个 link -
在安慰我从 declare const Twilio: any;
获得的 Twilio
变量时,我得到了整个 twilio 函数。谁能告诉我如何在我的应用程序中实际实现聊天应用程序或如何使用该功能。
此处为 Twilio 开发人员布道师。
现在您有了 Twilio
变量,您可以通过 Twilio.Chat.Client
对象访问聊天功能。
我建议通读 Twilio Programmable Chat documentation to see how it all works together and how you can build your own chat application. You can also check out the example application,它不是内置在 Angular 中,但应该让您了解应该如何协同工作。