SDKsAndroid
Send a message
Use sendMessage to send a Message to a one-to-one or group conversation.
For a one-to-one message, set recvUid. For a group message, set recvGid. OnMsgSendCallback reports success, failure, and media upload progress.
messageManager.sendMessage(new OnMsgSendCallback() {
@Override public void onSuccess(Message sentMessage) { /* sentMessage is the successfully sent message. */ }
@Override public void onError(int code, String error) { /* code and error describe the failure. */ }
}, message, peerUserID, null, offlinePushInfo);Was this page helpful?