TapTalkLive.init(secretKey, isLoggedInWithAccessToken<boolean>, showLoadingScreen<boolean>, isOpenLauncherByDefault<boolean>, withoutRoomList<boolean>);
TapTalkLive.setTapliveLanguage("en or id");
TapTalkLive.setBrandColor(r, g, b);
Hide/Show "Powered By TapTalk.io" wording
TapTalkLive.setHideTaplivePower();
setTapliveApiBaseURL(baseAPIUrl);
tapliveGetCaseList({
onSuccess: (data) => {
// action here
},
onError: (errorMessage) => {
// action here
}
})
tapliveGetTopicList({
onSuccess: (data) => {
// action here
},
onError: (message) => {
// action here
}
})
tapliveCreateCaseWithCallback(int_topicid, string_message, {
onSuccess: (data) => {
// action here
},
onError: (message) => {
// action here
}
})
TapTalkLive.toggleLauncher((boolean) => {
// action here
});