I am using the below code sample to connect to Microsoft Teams meeting using Azure Communication Calling JS SDK
https://learn.microsoft.com/en-us/azure/communication-services/quickstarts/voice-video-calling/get-started-teams-interop?pivots=platform-web
I had issue with connecting to Joining teams meeting. Initially I used the code without any modification except for token. When I used for meeting link https://teams.live.com/meet/1234567890
, it was giving me null pointer exception.
I modified the code just to use meeting id.
callAgent.join({ meetingId: 1234567890 }, {});
I got the below error when the HTTP POST to URL https://api3.cc.skype.com/conv/
{
"operationFailure": {
"sender": null,
"reason": "unknown",
"code": 404,
"subCode": 5732,
"phrase": "Conversation ending after scheduled meeting not found in Scheduling Service. ",
"resultCategories": [
"UnexpectedClientError"
],
"acceptedElsewhereBy": null
},
"CorrelationId": "7f9ab56a-6460-4368-888e-1af3c860ce8d"
}
In the above samples, I have masked the meetingid to a dummy value of 1234567890
Let me know how to resolve this issue.