Forum Discussion
Developers_Invillia
Jul 08, 2020Copper Contributor
Problem when trying to join a meeting created using the MS Graph API via desktop application
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 try...
subhasish-MSFT
Jul 09, 2020Former Employee
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);
Developers_Invillia
Jul 09, 2020Copper Contributor
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.
- subhasish-MSFTJul 22, 2020Former Employee
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.