You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
How to get incoming(join call) request promt alert in Azure communication service in React js for web, so that we can add "Admit" and "reject" option.
#232
Open
anupsamanta opened this issue
Jun 10, 2024
· 1 comment
We have implemented video calling using Azure communication services . we are able to connect each others in video call automatically using room Id. But we need to implement "Admit", "Admit All" before the establishment of the connection and "Reject" functionality . Need assistance to implement this functionality .
How we can get notified a join call request. Which function should we use and where to use.
The text was updated successfully, but these errors were encountered:
Hi @anupsamanta , Rooms SDK does not have built in lobby functionality.
To create functionality for an admit feature your service would need to handle this in the backend.
You could, for example, have a flow that looks like:
User A and B are in the Rooms call
User C wishes to join
User C goes to your website and requests join
This would be via a custom endpoint unrelated to ACS. Your service would need an endpoint that would listen for such a request
Users A and B are notified that User C wishes to join
Again this would need to be via a custom push event to the clients A and B from your service
User A or B clicks admit
This would continue to be through custom endpoints on your service still unrelated to ACS
You service then follows it's regular flow for adding a user to the call using ACS Rooms SDK and adds User C to the room.
We don't have an end-to-end sample that incorporates this behavior today
We have implemented video calling using Azure communication services . we are able to connect each others in video call automatically using room Id. But we need to implement "Admit", "Admit All" before the establishment of the connection and "Reject" functionality . Need assistance to implement this functionality .
How we can get notified a join call request. Which function should we use and where to use.
The text was updated successfully, but these errors were encountered: