Kommunicate
The plugin for the Kommunicate SDK. With the help of this plugin, you can easily add human + bot chat support functionality to you app. Refer to: TODO: insert site link For documentation: TODO: insert link
Cordovaの問題で困っていますか?
本格的なプロジェクトを構築している場合、トラブルシューティングに時間を費やす余裕はありません。Ionicのエキスパートが、保守、サポート、統合に関する公式サポートを提供しています。
インストール
Ionic Native Enterprise はIonic Teamが完全にサポートしメンテナンスしているプラグインを利用できます。 詳しくみる か、エンタープライズプラグインに興味があれば 連絡ください
サポートしているプラットフォーム
- Android
- Browser
- iOS
利用方法
React
Angular
import { Kommunicate } from '@ionic-native/Kommunicate';
constructor(private kommunicate: Kommunicate) { }
//also add [..., Kommunicate, ... ] inside the providers array, if required
var kmUser = {
userId : 'randomstring',
authenticationTypeId : 1
};
this.kommunicate.login(kmUser)
.then((res: any) => console.log("Sucessfully logged in." + res))
.catch((error: any) => console.error("Error logging in." + error));
var conversationObject = {
isUnique : false
};
this.kommunicate.conversationBuilder(converationObject)
.then((clientChannelKey: any) => console.log("Kommunicate create conversation successful the clientChannelKey is : " + clientChannelKey))
.catch((error: any) => console.error("Error creating conversation." + error));

