Jul 08 2020 02:39 PM
We have an application that creates meetings using the MS Graph API with the onlineMeeting method. We have been using this method for over 5 months and a short time ago we noticed a bug.
When trying to join one of these meetings through the desktop application (with deep link) the screen stopped in "connecting" and the users are unable to access the meeting. However, when trying to access the same meeting through the link on the web (browser) you normally access it.
Below are examples of the API we consume:
Jul 09 2020 08:04 AM
I am not able to reproduce it. Can you please share which version of Teams client sdk are you using?
Just to confirm from the below snippet, You are facing when below code snippet executes right ?
const joinUrl = encodeURI(joinUrl);
microsoftTeams.executeDeepLink(joinUrl);
Jul 09 2020 11:28 AM
@subhasish-MSFT Hello, we are using version 1.6.0.
Exactly, the error to connect to a meeting happens only through deeplink. From a meeting created by the MS Graph API onlineMeetings.
Jul 22 2020 09:14 AM
I am able to reproduce it, For quick fix I tried using with out encoding the URL.
Try calling like this.
microsoftTeams.executeDeepLink('meeting_url');
It did work for me. Please let me know if it helps.