wannatalkcore

Creator: coderz1093

Last updated:

0 purchases

wannatalkcore Image
wannatalkcore Images
Add to Cart

Description:

wannatalkcore

wannatalkcore #
Wannatalk Official Flutter plugin.
Getting Started #
Edit the pubspec.yaml file in your app directory to define the Wannatalk SDK dependency:
dependencies:
wannatalkcore: ^0.0.25
copied to clipboard
iOS Setup #


Request WTService-Info.plist from wannatalk.ai and drag it into your application. When prompted, select "Copy items if needed" and continue.


Add below keys in your application's Info.plist
<key>NSPhotoLibraryUsageDescription</key>
<string>To save in-chat photos and videos</string>
<key>NSContactsUsageDescription</key>
<string>To locate friends already on the Wannatalk network</string>
<key>NSCameraUsageDescription</key>
<string>To take photos and videos to send to friends in-chat</string>
<key>NSLocationWhenInUseUsageDescription</key>
<string>To display it in map</string>
<key>NSMicrophoneUsageDescription</key>
<string>To record live photos and movies</string>
copied to clipboard


Add this line to your application pod file
pod 'WTExternalSDK', :git =>'https://github.com/edzehoo/WannatalkAPI-iOS.git', :tag => '1.8.1'


That's it! Run the app


To strip simulator architecture framework for your app submission #

Copy trim.sh file into your project folder.
Create Run Script Phase in Build Phases of your application target.
Paste "$SRCROOT/trim.sh" inside the body of Run Script Phase.
Enable Run script only when installing and Show environment variables in build log.


Android Setup #


Request wannatalk-services.json from wannatalk.ai and drag it into your application assets directory



Enable multiDexEnabled in your application build.gradle
android {
defaultConfig {
// Enabling multidex support.
multiDexEnabled true
}
...
}
copied to clipboard


Set colorPrimary, colorPrimaryDark and colorAccent attributes in app's color.xml (src/main/res/values/colors.xml)


Add maven { url 'https://jitpack.io' } in your project build.gradle
allprojects {
repositories {
...

maven { url 'https://jitpack.io' }

...
}

}
copied to clipboard


That's it! Run the app


Usage #
import 'package:wannatalkcore/wannatalkcore.dart';
copied to clipboard
To link Wannatalk account #
Wannatalkcore.login(onCompletion: (WTResult result) {
if (result.success) {

}
});
copied to clipboard
To link Wannatalk account with user credentials #
Wannatalkcore.silentLogin("<user_identifier>", { displayname: "name", key1: "Value1", key2: "Value2"}, onCompletion: (WTResult result) {
if (result.success) {
}
});
copied to clipboard
To check login status #
bool loggedIn = await Wannatalkcore.isUserLoggedIn;
copied to clipboard
To unlink Wannatalk account #
Wannatalkcore.logout(onCompletion: (WTResult result) {
});
copied to clipboard
Wannatalk events #
This callback will be triggered to notify events:

kWTEventTypeLogin: This event will be triggered when user login into wannatalk account. evenResponse.success indicates whether login successful or not. If fails, check error information at eventResponse.error.
kWTEventTypeLogout: This event will be triggered when user loggout from wannatalk account. evenResponse.success indicates whether logout successful or not. If fails, check error information at eventResponse.error.
kWTEventTypeProduct: This event will be triggered when user click on product image in chat page. evenResponse.result contains productID and storeID of the respective product image message.


Wannatalkcore.setMethodCallHandler(onReceivedEvent:(WTEventResponse eventResponse) {

switch (eventResponse.eventType) {
case WTEventResponse.kWTEventTypeProduct: {
var result = eventResponse.result;
if (result.success) {
if (result.productID != null && result.storeID != null) {
print("ProductID: " + result.productID!);
print("StoreID: " + result.storeID!);
}
}
else {
// Error
print(result.error);
}
break;
}
}
});
copied to clipboard
To send text message to user #

String receiverUserIdentifier = "+60199299399499"; // Receiver mobile number with calling code

String message = "Hi"; // Message you want to send to user
Wannatalkcore.sendTextMessage(receiverUserIdentifier, message, onCompletion: (WTResult result) {
if (result.success) {

}
});

copied to clipboard
To send product image to user #

String receiverUserIdentifier = "+60199299399499"; // Receiver mobile number with calling code

String productID = "<productID>"; // Product identifier
String productName = "<productName>"; // Optional // Product name
String productPrice = "<productPrice>"; // Optional // Product price
String productImageUrl = "https://upload.wikimedia.org/wikipedia/commons/a/ab/Apple-logo.png"; // Product image url
String caption = "Can share details about this product?"; // caption will be sent to receiver along with image
String storeID = "<storeID>"; // Store/Shop identifier

WTChatInput chatInput = WTChatInput.Product(productID, productName,
productPrice, productImageUrl,
caption, storeID);

Wannatalkcore.sendProductImage(receiverUserIdentifier, chatInput, onCompletion: (WTResult result) {
if (result.success) {

}
});


copied to clipboard
To contact organization support #

String orgID = "your_organization_id";
String channelID = "your_chat_channel_id";
String message = "Hi";

Wannatalkcore.contactOrganization(orgID, channelID, message, onCompletion: (WTResult result) {
if (result.success) {

}
});

copied to clipboard
HelpDesk #
To load your organization profile #
Wannatalkcore.loadOrganizationProfile(autoOpenChat, onCompletion: (WTResult result){
});
copied to clipboard
Collaboration #
To view all chats #
Wannatalkcore.loadChats(onCompletion: (WTResult result) {
});
copied to clipboard
To view all users #
Wannatalkcore.loadUsers(onCompletion: (WTResult result) {
});
copied to clipboard
Other #
To show or hide guide button #
WannatalkConfig.showGuideButton(true); // default = true
copied to clipboard
To enable or disable sending audio message #
WannatalkConfig.allowSendAudioMessage(false); // default = true
copied to clipboard
To show or hide add participants option in new ticket page and chat item profile page #
WannatalkConfig.allowAddParticipants(false); // default = true
copied to clipboard
To show or hide remove participants option in chat item profile #
WannatalkConfig.allowRemoveParticipants(false); // default = false
copied to clipboard
To show or hide welcome message #
WannatalkConfig.showWelcomeMessage(false); // default = false
copied to clipboard
To show or hide Profile Info page #
WannatalkConfig.showProfileInfoPage(false); // default = true
copied to clipboard
To create auto tickets: #
Chat ticket will create automatically when auto tickets is enabled, otherwise default ticket creation page will popup
WannatalkConfig.enableAutoTickets(true); // default = false
copied to clipboard
To show or hide close chat button in chat page #
WannatalkConfig.showExitButton(true); // default = false
copied to clipboard
To show or hide participants in chat profile page #
WannatalkConfig.showChatParticipants(false); // default = true
copied to clipboard
To enable or disbale chat profile page #
WannatalkConfig.enableChatProfile(false); // default = true
copied to clipboard
To allow modify in chat profile page #
WannatalkConfig.allowModifyChatProfile(false); // default = true
copied to clipboard
To set Inactive chat timeout: #
Chat session will end if user is inactive for timeout interval duration. If timeout interval is 0, chat session will not end automatically. The default timout interval is 1800 seconds (30 minutes).
double timeoutInterval = 1800; // Default Value: 1800 seconds ~ 30 minutes
WannatalkConfig.setInactiveChatTimeoutInterval(timeoutInterval);
copied to clipboard

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.