Hey! These docs are for version 7.0, which is no longer officially supported. Click here for the latest version, 9.0!

User-User Messages

How to use OneSignal for user-to-user messages.

🚧

Push Notifications are Not designed for live chat.

Push Notifications are best used as a fallback when both users are not active on your app.

Tools dedicated to Live Chat functionality include:

Push Notifications are not designed for sending live messages back and forth between users. They are designed to engage the user when they are outside of the app to let them know "You got a new message".

While you can add the chat message and image to the push, you should not rely on that data to be the only way for your app to send and process that data. There are many tools dedicated to handling live chat message data.

Instead, you should use push to alert the user that a new message is available after the message data has been sent to the device.

Recommended Setup:

1. Set the User ID

When OneSignal is initialized in your application, we provide User Status methods to retrieve the user's OneSignal Player ID. Use these to save the users' OneSignal Player ID to your server.

Another option is to send OneSignal your database User ID, we call this the External User ID and can be set with our setExternalUserId method.

Both options can be used target devices individually with push notifications.

2. Send the Message

To send a message to a user, call our API method Create notification. Alternatively, your server can send the target users' OneSignal Player IDs to your app, which can then use our Client SDK to send the notification.

Each of our mobile SDKs has a postNotification method that can target users with the include_player_ids parameter only. If you set the External User ID, you should trigger requests from your server.


What’s Next

Create an activity feed to show the notifications sent within your mobile app