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

222 views Asked by At

How to send a message in offline using quickblox

1

There are 1 answers

2
Valentyn Tereshchenko 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();