Hi Microsoft Support,Have a problem with callAgent.join for a room call but the same code for a group call works,
//this code works
const context = { groupId: '87f5d819-faba-4d87-8c47-062a3d13afa2' }
...some code
call = callAgent.join(context, { videoOptions });
//this code does not work and causes "CallingCommunicationError: Invalid call configuration" in developer console
const context = { roomsId: '9956258045796892' }
...some code
call = callAgent.join(context, { videoOptions });
using the latest versions with npx parcel
@azure/communication-calling 1.14.1
@azure/communication-common 2.2.1
@azure/communication-rooms 1.0.0
Any ideas? It seemed to work last night then today nothing I try can make the room join call work! 8( It taking up too much time might have to just use group call but as its for a secure mental health video chat support charity the rooms call would be better solution so really would like to find out what the problem is there, I noticed it was only just promoted to public release. Also we where not planning to use the https://github.com/Azure/communication-ui-library as we are integrating into an exising django python app and so we cant just switch to react. But if group call works and I can get the videos and audio working surely its only a minor issue preventing the room call?
Thanks,
Paul