User Presence
Learn how to track user presence updates and check user status using ping.
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 our Setup page for more details.
- Create a user session to be able to use QuickBlox functionality. See our Authentication page to learn how to do it.
- Connect to the Chat server. See our Connection page to learn how to do it.
Visit our Key Concepts page to get an overall understanding of the most important QuickBlox concepts.
Check if a user is online
This feature is coming soon. Please check back later. For more updates and questions, feel free to contact our Customer Support Team.
Ping user
QuickBlox SDK can send application-level pings to a user. As a result, you can check if the user is connected to the Chat server.
int userId = 89987878;
try {
await QB.chat.pingUser(userId);
} on PlatformException catch (e) {
// Some error occurred, look at the exception message for more details
}
Argument | Required | Description |
---|---|---|
userId | yes | ID of the user. |
Ping server
QuickBlox SDK can send application-level pings to a server. As a result, you can check if there is a connection with the Chat server.
try {
await QB.chat.pingServer();
} on PlatformException catch (e) {
// Some error occurred, look at the exception message for more details
}
Updated over 3 years ago
What’s Next