Add Users to the Conversation
You must now add your Users as Members of the Conversation using Nexmo CLI.
To add Alice
to the conversation replace CONVERSATION_ID
in the command below with your conversation Id generated previously (CON-...
) and run the command:
nexmo member:add CONVERSATION_ID action=join channel='{"type":"app"}' user_name=Alice
The output is ID of the Member:
Member added: MEM-aaaaaaa-bbbb-cccc-dddd-0123456789ab
Now you need to add the second user, Bob
to the Conversation. Similarly, replace the CONVERSATION_ID
and execute the command:
nexmo member:add CONVERSATION_ID action=join channel='{"type":"app"}' user_name=Bob
Member added: MEM-eeeeeee-...
Creating an Android chat app
Create a Android application that enables users to message each other using the Android Client SDK and Kotlin.
Also available on:
Steps
21