How to send a message in offline using quickblox sdk ios like whatsapp

228 Views Asked by At

How to send a message in offline using quickblox

1

There are 1 best solutions below

2
On

You can send common message and offline opponent will get push notification. If you mean sending message without login to the chat, you can send message via REST, use next snippet for Android:

QBChatMessage qbChatMessage = ...;

QBRestChatService.createMessage(qbChatMessage, true).perform();