deep link
2 Topicscreate a teams which consume existing web application
Hi all, I am starting using teams app develpement platform. I went trhough all the tutos in order to create an app which consume and join content of an existing content in my organization. I tried deeplinks but they allow open the application in the browser. The goal is to open the business application in teams application without using external browser Any one has a tutorial to do so Regards2.5KViews0likes3CommentsProblem 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 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: API onlineMeeting POST https://graph.microsoft.com/v1.0/me/onlineMeetings Content-Type: application/json { "startDateTime":"2019-07-12T14:30:34.2444915-07:00", "endDateTime":"2019-07-12T15:00:34.2464912-07:00", "subject":"Teste Meeting", "participants": { "organizer": { "identity": { "user": { "id": "oid of user teams", }, }, }, }, } And here's how we use it on sdk Pernille-Eskebo/teams-js: const joinWebUrl = https://teams.microsoft.com/l/meetup-join/19%3ameeting_Y2UxYmExYTQtYTAzNC00M2RhLWFiYmMtYmQ4ODgyZjY1YjI3%40thread.v2/0?context=%7b%22Tid%22%3a%2242b15616-327f-44b1-93a4-c2ebfe032fc7%22%2c%22Oid%22%3a%2296a51331-be23-4600-a8a6-7ac9df1b27d3%22%7d const joinUrl = https://teams.microsoft.com/l/meetup-join/19:meeting_Y2UxYmExYTQtYTAzNC00M2RhLWFiYmMtYmQ4ODgyZjY1YjI3@thread.v2/0 microsoftTeams.initialize(); microsoftTeams.getContext((context => { if (context.hostClientType === "web") { window.open(joinWebUrl, "_blank") return; } const joinUrl = encodeURI(joinUrl); microsoftTeams.executeDeepLink(joinUrl); })); Is anyone having the same problem or can they help us with solutions to work around it? Thanks,1.9KViews2likes3Comments