Message translation feature is provided through Google Cloud Translation. To use this feature, register an appropriate Google Cloud Service Account Key on our dashboard.
Setting translationLanguage property in TPMessageRetrievalParams object with language code (ISO-639) retrieves message with its translated text.
Setting translationLanguage property in TPMessageSendParams with language code (ISO-639) when sending message will automatically translate the message text.
Calling 'getTranslatedText' on TPMessage object will return a Key-Value map. Translated text(value) can be accessed from the map by using language code (used in 'translationLanguage' parameter) as key.
1. Get Messages
Messages are sorted by most recent (default).
Setting translationLanguage property in TPMessageRetrievalParams object will return TPMessage objects with translated texts via success block (success closure).
Use this to translate channel messages from the past.
TPMessageRetrievalParams class is available starting from TalkPlus iOS SDK v0.5.3.
// get messages from channel
TPMessageRetrievalParams *params =
[[TPMessageRetrievalParams alloc] initWithChannel:channel];
params.lastMessage = lastMessage;
params.orderby = TPOrderByLatest;
params.translationLanguage = translationLanguage;
[[TalkPlus sharedInstance] getMessages:params
success:^(NSArray<TPMessage *> *tpMessages, BOOL hasNext) {
// SUCCESS
// If 'hasNext' is YES, call this method with the last object in 'tpMessages'.
} failure:^(int errorCode, NSError *error) {
// FAILURE
}];
// get a single message from channel
TPMessageRetrievalParams *params =
[[TPMessageRetrievalParams alloc] initWithChannel:channel];
params.messageId = messageId;
params.translationLanguage = translationLanguage;
[[TalkPlus sharedInstance] getMessage:tpChannel
messageId:messageId
translationLanguage:@""
success:^(TPMessage *tpMessage) {
} failure:^(int errorCode, NSError *error) {
}];
// get messages from the channellet params =TPMessageRetrievalParams(channel: channel)params?.lastMessage = messageparams?.orderby = .orderByLatestparams?.translationLanguage = translationLanguageTalkPlus.sharedInstance()?.getMessages(params, success: { tpMessages, hasNext in// SUCCESS// If 'hasNext' is true, call this method with the last object in 'tpMessages'.}, failure: { (errorCode, error) in// FAILURE})// get a single message from the channellet params =TPMessageRetrievalParams(channel: channel)params?.messageId = messageIdparams?.translationLanguage = translationLanguageTalkPlus.sharedInstance()?.getMessage(params, success: { tpMessage in// SUCCESS}, failure: { (errorCode, error) in// FAILURE})
2. View Messages With File Upload
View messages with file attachment.
Messages are sorted by most recent (default).
Setting translationLanguage property in TPMessageRetrievalParams object will return TPMessage objects with translated texts via success block (success closure).
Use this to translate channel messages from the past.
TPMessageRetrievalParams class is available starting from TalkPlus iOS SDK v0.5.3.
TPMessageRetrievalParams *params =
[[TPMessageRetrievalParams alloc] initWithChannel:channel];
params.lastMessage = lastMessage;
params.orderby = TPOrderByLatest;
params.translationLanguage = translationLanguage;
[[TalkPlus sharedInstance] getFileMessages:params
success:^(NSArray<TPMessage *> *tpMessages, BOOL hasNext) {
// SUCCESS
// If 'hasNext' is YES, call this method with the last object in 'tpMessages'.
} failure:^(int errorCode, NSError *error) {
// FAILURE
}];
let params =TPMessageRetrievalParams(channel: channel)params?.lastMessage = messageparams?.orderby = .orderByLatestparams?.translationLanguage = translationLanguageTalkPlus.sharedInstance()?.getFileMessages(params, success: { tpMessages, hasNext in// SUCCESS// If 'hasNext' is true, call this method with the last object in 'tpMessages'.}, failure: { (errorCode, error) in// FAILURE})
3. Send Message
The following message types are supported: text, hidden, custom.
Push notification is not sent for hidden message type.
admin, admin_hidden message type can only be sent from TalkPlus dashboard or by calling REST API.
If you have users you want to mention, you can pass an array of user IDs in the mentions field.
You can enter up to 10 key-value pairs in data field. The maximum size of key is 128 characters and the maximum size of value is 1024 characters. Both key and value must be strings.
Both message text and data cannot be empty when sending a message.
The maximum size of messagetext is 8192 characters.
The maximum file upload size is 15MB.
If you need to handle files bigger than 15MB, see this.
Emojis supported by UTF-8 can be used in message text.
For custom emojis, required values can be put into message text then parsed directly.
Setting translationLanguages property in TPMessageSendParams object will return TPMessage objects with translated texts via ''success block (success closure). Message recipient will be able to check the message via "messageReceived" callback event.
TPMessageSendParams class is available starting from TalkPlus iOS SDK v0.5.3.