Before you begin
- Register a QuickBlox account. This is a matter of a few minutes and you will be able to use this account to build your apps.
- Configure QuickBlox SDK for your app. Check out Setup page for more details.
- Create a user session to be able to use QuickBlox functionality. See Authentication page to learn how to do it.
- Connect to the Chat server. See Connection page to learn how to do it.
- Create a dialog. See Dialogs page to learn how to do it.
Subscribe message events
Use theQB.chat.onMessageListener
to receive messages in real-time. The event listener enables the app to listen to the incoming message.
JavaScript
Send text message
To send a message to a private dialog, use the code snippet below.JavaScript
You need to join the group and public dialog by calling the
join()
method before you start chatting in a dialog. Once the dialog is joined, you can receive/send messages. See this section to learn how to join the dialog.JavaScript
Argument | Required | Description |
---|---|---|
dialogJid | yes | Room JID. JID (Jabber ID) of XMPP room in the XMPP server. Empty for a privatе dialog. Generated automatically by the server after dialog creation. You can get JID from the dialog ID. The JID format is the following: <app_id>-<dialog_id>@muc.chat.quickblox.com |
message | yes | Specifies message fields that should be set. |
Make sure to set the
save_to_history: 1
to save the message on the server. If you set save_to_history: 0
, the message won’t be saved on the server. However, the message will be delivered to the user in either case.Send message with attachment
Chat attachments are supported by content API. In order to send a chat attachment, you need to upload the file to QuickBlox cloud storage and obtain a link to the file (file UID). Then you need to include this UID into the chat message and send it.JavaScript
JavaScript
JavaScript
Send message with extra data
You have an option to extend the message with additional fields. Specify one or more key-value items in themessage
. Using these items, you can implement the ability for a user to send self-location information to another user or notification messages signifying that a user has left a group, etc.
JavaScript
Argument | Required | Description |
---|---|---|
jidOrUserId | yes | User ID or Room JID. JID (Jabber ID) of XMPP room in the XMPP server. Empty for a privatе dialog. Generated automatically by the server after dialog creation. You can get JID from the dialog ID. The JID format is the following: <app_id>-<dialog_id>@muc.chat.quickblox.com . |
message | yes | Specifies message fields that should be set. |
message
:
Field | Required | Description |
---|---|---|
type | no | Message type. Possible values: chat and groupchat. |
body | no | A message text. |
extension | no | Extra data. Specify any key-value pairs. In each pair, the key and value are both string values. Set save_to_history as true to save the message on the server. |
Retrieve chat history
Every dialog stores its chat history that you can retrieve using thelist()
method. The request below will return messages for a specific dialog, sorted by the date_sent
field in descending order, limited to 100 messages.
JavaScript
If you want to mark all retrieved chat messages as a read, set the
markAsRead
parameter as true
. If you decide not to mark chat messages as read, just set markAsRead
parameter as false
.params
:
Pagination parameter | Description |
---|---|
skip | Skip N records in search results. Useful for pagination. Default (if not specified): 0. |
limit | Limit search results to N records. Useful for pagination. Default value: 100. |
Search operators
You can use search operators to search for the exact data that you need.Search operators | Applicable to types | Applicable to fields | Description |
---|---|---|---|
lt | number, string, date | date_sent, sender_id, recipient_id, updated_at | Less Than operator. |
lte | number, string, date | date_sent, sender_id, recipient_id, updated_at | Less Than or Equal to operator. |
gt | number, string, date | date_sent, sender_id, recipient_id, updated_at | Greater Than operator. |
gte | number, string, date | date_sent, sender_id, recipient_id, updated_at | Greater Than or Equal to operator. |
ne | number, string, date | _id, message, date_sent, sender_id, recipient_id | Not Equal to operator. |
in | number, string, date | date_sent, sender_id, recipient_id | IN array operator. |
nin | number, string, date | date_sent, sender_id, recipient_id | Not IN array operator. |
or | number, string, date | date_sent, sender_id, recipient_id | All records that contain a value 1 or value 2. |
ctn | string | message | All records that contain a particular substring. |
Sort operators
You can use sort operators to order the search results.Sort operator | Applicable to types | Description |
---|---|---|
sort_asc | All types | Search results will be sorted in ascending order by the specified field. |
sort_desc | All types | Search results will be sorted in descending order by the specified field. |
Update message
Update the message text using theupdate()
method.
JavaScript
Argument | Required | Description |
---|---|---|
messageId | yes | ID of the message being updated. |
updateParams | yes | Specifies key-value fields that should be updated. |
function() | yes | Specifies the callback function which receives the response from the QuickBlox server for the updating request. |
Delete message
Any user in theoccupantIDs
can delete a message from the dialog. As a result, the message will be deleted from the current user history, without affecting the histories of other users.
The owner of the dialog can completely remove messages from all users’ histories. This is achieved by setting the force
to 1
.
JavaScript
params
:
Argument | Required | Description |
---|---|---|
messageId | yes | ID of the message. |
params | yes | Specifies params fields that should be set. |
Check if a message is sent
The message is considered as sent if it has been delivered to the server. To get to know that a message has been delivered to the server, make sure to enable a stream management before connecting to the Chat server. Enable it using theCONFIG
object and then call the init()
method. See this section to learn how to enable the stream management.
Thus, to handle the event when the message is considered as sent, the onSentMessageCallback()
is used.
JavaScript
You should enable Stream Management before you do the
login()
because the Stream Management is initialized while Chat login is performed.The Stream Management defines an extension for active management of a stream between a client and server, including features for stanza acknowledgments.Mark message as delivered
As a sender, you may want to be informed that a message has been successfully delivered to the recipient. The mark-as-delivered functionality allows to notify the sender about message delivery. To track the event when the message has been delivered to the user, use theQB.chat.onMessageListener
. See this section to learn how to add the listener. As a result, when a user receives a message, the SDK receives the onDeliveredStatusListener()
callback.
JavaScript
sendDeliveredStatus()
method to mark a message as delivered. As a result, the server will notify a sender about the delivery receipt.
JavaScript
markable
parameter and pass it within the message
to the send()
method if you want, as a sender, to receive message delivery receipts from other recipients. Thus, the markable
parameter enables the sender to request the delivery receipt. It also enables the recipient to confirm the message delivery. However, if markable
is not set or omitted, then you can notify a sender about the delivery receipt using the sendDeliveredStatus()
method.
JavaScript
Make sure to understand, that marking-as-delivered operation just confirms the fact of message delivery. The message acquires the delivered status when the
onDeliveredStatusListener
callback is received.When a message is marked as delivered, the IDs of users who have received the message are stored in the message model, on the server. Thus, you can request a chat history from the server to get to know who received the message using the list()
method. See this section to learn how to retrieve chat history.Mark message as read
As a sender, you may want to be informed that a message has been read by the recipient. The mark-as-read functionality allows to notify the sender that a message has been read. To track the event when the message has been read by the user, use theQB.chat.onMessageListener
. See this section to learn how to add the listener. As a result, when a user receives a message, the SDK receives the onReadStatusListener()
callback.
JavaScript
sendReadStatus()
method to mark a message as read. As a result, the server will notify a sender about the read receipt.
JavaScript
When a message is marked as read, the IDs of users who have read the message are stored in the message model, on the server. Thus, you can request a chat history from the server to get to know who read the message using the
list()
method. See this section to learn how to retrieve chat history.Send typing indicators
You may want, as a sender, to let the recipient know that you are typing the message or have stopped typing the message. Use typing indicators as a form of chat-specific presence. Typing indicators allow to indicate if users are typing messages in a dialog at the moment. There are the following typing notifications supported.- typing. The user is composing a message. The user is actively interacting with a message input interface specific to this chat session (for example, by typing in the input area of a chat window).
- stopped. The user had been composing but now has stopped. The user has been composing but has not interacted with the message input interface for a short period of time (for example, 30 seconds).
QB.chat.onMessageListener
. See this section to learn how to add the listener. As a result, when a user is typing or stopped typing a message, the SDK receives the onMessageTypingListener()
callback.
JavaScript
sendIsTypingStatus()
method. As a result, the server will notify a recipient about the event.
JavaScript
sendIsStopTypingStatus()
method. As a result, the server will notify a recipient about the event.
JavaScript
Argument | Required | Description |
---|---|---|
jid | yes | Room JID. JID (Jabber ID) of XMPP room in the XMPP server. Pass room JID for type=2 (group dialog). Generated automatically by the server after dialog creation. You can get JID from the dialog ID. The JID format is the following: <app_id>-<dialog_id>@muc.chat.quickblox.com"dialog ). |
userID | yes | ID of the opponent. Pass opponet ID for type=3 (private dialog). |
Send system messages
There is a way to send system messages to other users about some events. For example, a system message can be sent when a user has joined or left a group dialog. These messages are handled over a separate channel and are not be mixed up with regular chat messages. Thus, they are handled by theonSystemMessageListener
callback.
System messages are also not shown in the dialog history and, consequently, are not stored on the server. This means that these messages will be delivered only to online users. Send system messages using the sendSystemMessage()
method.
JavaScript
Argument | Description |
---|---|
opponentId | ID of the opponent. |
message | Specifies system message fields that should be updated. |
message
:
Fields | Required | Description |
---|---|---|
body | no | A system notification text. |
extension | no | Extra data. Specify one or more key-value pairs. In each pair, the key and value are both string values. |