Hello ,
I have successfully integrated CometChat into my Angular application. After the user logs into my application, I am also logging them into CometChat using their UID
and the generated AuthToken
. This part works well, and the user can now send messages and participate in chats.
However, I want to extend this functionality by adding voice and video calling features. I am looking for guidance on how to:
- Add voice and video calling after the user has logged into both my app and CometChat.
- Use the correct SDK methods to implement call initiation, answering, and managing calls.
- Ensure that the calling feature works seamlessly with the existing chat functionality in my Angular app.
Here are the key details of my current setup:
- Angular application
- CometChat Pro SDK
- User login via
UID
andAuthToken
generation
Any advice, code snippets, or documentation references would be greatly appreciated!