Quickblox 一对一聊天记录不起作用
Quickblox one to one chat history not working
我正在使用 Javascript SDK 在 Quickblox 中进行一对一聊天,但不知何故我无法存储聊天记录。
我正在关注这个 link。
var message = {
body: text,
type: 'chat',
extension: {
nick: chatUser.email,
// token from session is set on window object
token: window.token,
// MyChat is a custom class_name
class_name: 'MyChat'
}
};
我通过了 class_name
和 token
,因为我看到 android sdk 遵循相同的模式。
private Message createMsgWithAdditionalInfo(int userId, String body, Map<?, ?> addinfoParams){
Message message = new Message(QBChatUtils.getChatLoginFull(userId), Message.Type.chat);
String addInfo = ToStringHelper.toString(addinfoParams, "", Consts.ESCAPED_AMPERSAND);
//
MessageExtension messageExtension = new MessageExtension(Consts.QB_INFO, "");
try {
messageExtension.setValue("token", QBAuth.getBaseService().getToken());
messageExtension.setValue("class_name", "ChatMessage");
messageExtension.setValue("additional", addInfo);
} catch (BaseServiceException e) {
e.printStackTrace();
}
message.addExtension(messageExtension);
message.setBody(body);
return message;
}
我也在说明中看到了这个。
<message id="123" type="chat" to="291-92@chat.quickblox.com" from="292-92@chat.quickblox.com"><body>Hi there</body><quickblox xmlns=""><token>848d4bf336d99532deff6bf7c8bb4b7e7b1a71f9</token><class_name>ChatMessage</class_name></quickblox></message>
我在这里也看到 token
和 class
通过了,所以我在猜测如何在我的 message
对象中构建结构,以便让它工作。
我创建chatService的方式是这样的。
chatService = new QBChat(params);
// to send message I am using sendMessage function
// message object is same as defined above.
chatService.sendMessage(recipientID, message);
这是一种陈旧且已弃用的存储聊天记录的方法
看看这个指南http://quickblox.com/developers/Chat#Server-side_chat_history
var msg = {
body: "Hey",
extension: {
save_to_history: 1
},
senderId: currentUser.id,
};
您必须使用 'save_to_history' 来存储消息
你可以以此分支为基础
https://github.com/QuickBlox/quickblox-javascript-sdk/tree/develop.chat/samples/chat
我正在使用 Javascript SDK 在 Quickblox 中进行一对一聊天,但不知何故我无法存储聊天记录。
我正在关注这个 link。
var message = {
body: text,
type: 'chat',
extension: {
nick: chatUser.email,
// token from session is set on window object
token: window.token,
// MyChat is a custom class_name
class_name: 'MyChat'
}
};
我通过了 class_name
和 token
,因为我看到 android sdk 遵循相同的模式。
private Message createMsgWithAdditionalInfo(int userId, String body, Map<?, ?> addinfoParams){
Message message = new Message(QBChatUtils.getChatLoginFull(userId), Message.Type.chat);
String addInfo = ToStringHelper.toString(addinfoParams, "", Consts.ESCAPED_AMPERSAND);
//
MessageExtension messageExtension = new MessageExtension(Consts.QB_INFO, "");
try {
messageExtension.setValue("token", QBAuth.getBaseService().getToken());
messageExtension.setValue("class_name", "ChatMessage");
messageExtension.setValue("additional", addInfo);
} catch (BaseServiceException e) {
e.printStackTrace();
}
message.addExtension(messageExtension);
message.setBody(body);
return message;
}
我也在说明中看到了这个。
<message id="123" type="chat" to="291-92@chat.quickblox.com" from="292-92@chat.quickblox.com"><body>Hi there</body><quickblox xmlns=""><token>848d4bf336d99532deff6bf7c8bb4b7e7b1a71f9</token><class_name>ChatMessage</class_name></quickblox></message>
我在这里也看到 token
和 class
通过了,所以我在猜测如何在我的 message
对象中构建结构,以便让它工作。
我创建chatService的方式是这样的。
chatService = new QBChat(params);
// to send message I am using sendMessage function
// message object is same as defined above.
chatService.sendMessage(recipientID, message);
这是一种陈旧且已弃用的存储聊天记录的方法
看看这个指南http://quickblox.com/developers/Chat#Server-side_chat_history
var msg = {
body: "Hey",
extension: {
save_to_history: 1
},
senderId: currentUser.id,
};
您必须使用 'save_to_history' 来存储消息
你可以以此分支为基础 https://github.com/QuickBlox/quickblox-javascript-sdk/tree/develop.chat/samples/chat