In my application i need an ability for the user to dial-in into existing video room where he already has video track created under his identity, so whenever user calls i generate the following TwiML:
<?xml version="1.0" encoding="UTF-8"?>
<Response>
<Connect>
<Room participantIdentity='MyIdentity'>DailyStandup</Room>
</Connect>
</Response>
But since participant identity matches the one that is already connected to the room instead of adding audio track to the existing user i get an error:
TwilioError: Participant disconnected because of duplicate identity
Is there a way to merge video/audio channels into one participant by pure twiml without doing any complex mumbo-jumbo logical coding?