The response from above is ‘success’ however the member Count does not increase.
I couldn’t figure out how to make a user join the channel and get them ready for chat. I was able to get some users to chat but somehow it didn’t work for some users. Is there a proper documentation on how to get the user up and ready for chat?
1. Is the user supposed to join the channel first?
To be able to observe the messages in a channel, a user must join the channel before hand. More on that in the documentation: Channels - Amity Docs
When a user joins a channel, they are able to observe and chat with other users in that channel. They are also automatically considered a member of that channel.
2. if user has not joined the channel, which endpoint do we use to register the user?
You can call the method ChannelRepository.joinChannel to make a user join a channel.
3. The response from above is ‘success’ however the member Count does not increase.
We’ve been updating our sample applications to show the member count. You can find the sample application (both for React or Vue) in our usual open source sample app repository at GitHub - AmityCo/Amity-Social-Cloud-Web-Sample-Apps
Note that in some cases you may experience a slight delay in the increase of the member count when other users than the current user are joining. The reason is that we buffer this value intentionally to avoid flooding your users with many join messages.